diff options
author | 2022-05-30 20:59:47 -0700 | |
---|---|---|
committer | 2022-05-30 20:59:47 -0700 | |
commit | 416eabe3ac6224a17875ab2ae466666afc62ca4d (patch) | |
tree | 197ae4bed9e57c83b839ed777d346dbd10d7cd9c /Dockerfile | |
parent | Remove redundant module for creating the WSGI app (diff) |
Specify wsgi_app in Gunicorn config
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:SnekAPI"] +CMD ["-c", "config/gunicorn.conf.py"] COPY . /snekbox WORKDIR /snekbox |