From 32e92b61ea7edb60bf93cfd28abb3208cc399946 Mon Sep 17 00:00:00 2001 From: EliseCastle23 <109446148+EliseCastle23@users.noreply.github.com> Date: Mon, 29 Jul 2024 15:16:22 -0600 Subject: [PATCH] changing wsgi files directory --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e3a5db..7879037 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,8 @@ RUN pip install poetry && \ COPY --chown=gen3:gen3 ./src /$appname COPY --chown=gen3:gen3 ./migrations /$appname/migrations -COPY --chown=gen3:gen3 ./deployment/wsgi/wsgi.py /$appname/wsgi.py +COPY --chown=gen3:gen3 ./deployment/wsgi/wsgi.py /$appname/deployment/wsgi/wsgi.py +COPY --chown=gen3:gen3 ./deployment/wsgi/gunicorn.conf.py /$appname/deployment/wsgi/gunicorn.conf.py # Run poetry again so this app itself gets installed too RUN poetry install --without dev --no-interaction