From a476f3a2c8c7a2780d35c7e7a57ebc7aed12e82f Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 18 Aug 2021 15:34:33 +0200 Subject: [PATCH] renamed moin.wsgi to standard python module name --- Dockerfile | 2 +- moin.wsgi => moin.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename moin.wsgi => moin.py (100%) diff --git a/Dockerfile b/Dockerfile index d532719..f91efee 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", "moin.wsgi:application", "-b", "0.0.0.0:8000"] +CMD ["gunicorn", "moin:application", "-b", "0.0.0.0:8000"] diff --git a/moin.wsgi b/moin.py similarity index 100% rename from moin.wsgi rename to moin.py