diff options
author | 2018-09-20 21:59:56 +0200 | |
---|---|---|
committer | 2018-09-20 22:27:04 +0200 | |
commit | 33d3014bf48945979a5e3851a2845e635723fa6c (patch) | |
tree | 1f0749bce16a4868fae5547cd5215a45a7c982aa /docker/app/stretch/3.7 | |
parent | Omit `HEALTHCHECK`. (diff) |
Use `uwsgi` instead of `gunicorn`.
Diffstat (limited to 'docker/app/stretch/3.7')
-rw-r--r-- | docker/app/stretch/3.7/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/app/stretch/3.7/Dockerfile b/docker/app/stretch/3.7/Dockerfile index 0d4a9f3e..35ed5cfd 100644 --- a/docker/app/stretch/3.7/Dockerfile +++ b/docker/app/stretch/3.7/Dockerfile @@ -23,4 +23,4 @@ RUN apt-get purge -y \ libc-dev \ libpq-dev -CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"] +CMD ["uwsgi", "--ini", "docker/app/uwsgi.ini"] |