Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
7pandeys authored Dec 10, 2023
1 parent 2b95c78 commit 58a6377
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM python:3.10.13-slim

RUN pip install poetry

WORKDIR /vizion

COPY . .

RUN poetry install

RUN poetry config virtualenvs.create false

EXPOSE 80

# ENTRYPOINT ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8030" ]"

0 comments on commit 58a6377

Please sign in to comment.