From 3004e6aa7fc16bf66121ac3a03800e661c310faf Mon Sep 17 00:00:00 2001 From: radinpirouz Date: Fri, 13 Feb 2026 03:15:11 +0330 Subject: [PATCH] Update Dockerfile For Better Caching --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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