diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..860979f --- /dev/null +++ b/Dockerfile @@ -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" ]"