From e146849cefd852d58917c640337d0e1a1fe6a3f7 Mon Sep 17 00:00:00 2001 From: Lea Date: Mon, 14 Oct 2024 19:21:57 +0200 Subject: [PATCH] update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91179a7..ed5c3ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM python:3.12-alpine -COPY ./requirements.txt /app/requirements.txt +COPY . /app WORKDIR /app RUN pip install -r requirements.txt -COPY . /app EXPOSE 5000 ENTRYPOINT ["gunicorn", "--config", "gunicorn_config.py", "app:app"]