diff --git a/Dockerfile b/Dockerfile index 20323e8..3f26010 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,12 @@ FROM python:3.12-slim WORKDIR /app -COPY . . +COPY requirement.txt . RUN pip install -r requirement.txt +COPY . . + EXPOSE 1600 CMD [ "gunicorn", "main:app", "--bind", "0.0.0.0:1600" ] \ No newline at end of file