From ebee031113acf587c6d79d38016ee64bd50e9289 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 18 Aug 2021 15:32:19 +0200 Subject: [PATCH] fixed gunicorn path to use local wsgi file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f60327e..d532719 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,4 +26,4 @@ RUN pip install -r requirements.txt # switch to the created user to run the application USER deploy -CMD ["gunicorn", "/data/config/moin.wsgi:application", "-b", "0.0.0.0:8000"] +CMD ["gunicorn", "moin.wsgi:application", "-b", "0.0.0.0:8000"]