aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-04 23:02:16 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-04 23:02:16 +0200
commit42037cc4e2e6cd6742721d843b1a07fe6f8362df (patch)
tree07872918b5efb62276efd9861af89034e656c857 /Dockerfile
parent"Updated Pipfile.lock (97f724c)!" (diff)
Use proper WSGI callable.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8c88acc1..fa44b05a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,4 +15,4 @@ WORKDIR /app
RUN pipenv install --deploy --system
RUN apk del python3-dev git libpq postgresql-dev gcc cmake autoconf automake musl-dev
-CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite:wsgi"]
+CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"]