diff options
author | 2022-05-30 20:52:26 -0700 | |
---|---|---|
committer | 2022-05-30 20:52:26 -0700 | |
commit | 409a76fa4aee3e2ee979f402cb4662cfd0a6aef4 (patch) | |
tree | be6833aa149fd77a97f8a95242cf81973c4fdddf /Dockerfile | |
parent | Make Sentry SDK and gunicorn optional dependencies (diff) |
Remove redundant module for creating the WSGI app
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |