aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-05-30 20:52:26 -0700
committerGravatar MarkKoz <[email protected]>2022-05-30 20:52:26 -0700
commit409a76fa4aee3e2ee979f402cb4662cfd0a6aef4 (patch)
treebe6833aa149fd77a97f8a95242cf81973c4fdddf /Dockerfile
parentMake Sentry SDK and gunicorn optional dependencies (diff)
Remove redundant module for creating the WSGI app
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c207a2b..7331ab4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -67,7 +67,7 @@ COPY config/ /snekbox/config/
FROM venv
ENTRYPOINT ["gunicorn"]
-CMD ["-c", "config/gunicorn.conf.py", "snekbox.api.app"]
+CMD ["-c", "config/gunicorn.conf.py", "snekbox.api:SnekAPI"]
COPY . /snekbox
WORKDIR /snekbox