Setup gunicorn for production WSGI server

This commit is contained in:
Jake Howard 2022-07-28 14:53:22 +01:00
parent 97d786e969
commit e2e0144b6a
Signed by: jake
GPG key ID: 57AFB45680EDD477
4 changed files with 14 additions and 1 deletions

View file

@ -36,6 +36,8 @@ COPY --chown=website ./website ./website
RUN SECRET_KEY=none python manage.py collectstatic --noinput --clear -v3
CMD gunicorn
# Just dev stuff
FROM production as dev