From 37e0fcdac9d3fd533372cc67a91534769c2793ad Mon Sep 17 00:00:00 2001 From: Lucas Bacciotti Date: Wed, 15 May 2024 11:52:39 +0100 Subject: [PATCH] fix: updating Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d4b8bb..a5edce1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,6 @@ COPY requirements.txt . RUN pip install -r requirements.txt -COPY wsgi.py . -COPY config.py . -COPY application application +COPY wsgi.py config.py application/ ./ CMD ["python", "wsgi.py"]