aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-05-30 20:59:47 -0700
committerGravatar MarkKoz <[email protected]>2022-05-30 20:59:47 -0700
commit416eabe3ac6224a17875ab2ae466666afc62ca4d (patch)
tree197ae4bed9e57c83b839ed777d346dbd10d7cd9c /Dockerfile
parentRemove redundant module for creating the WSGI app (diff)
Specify wsgi_app in Gunicorn config
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7331ab4..2382b8b 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:SnekAPI"]
+CMD ["-c", "config/gunicorn.conf.py"]
COPY . /snekbox
WORKDIR /snekbox