From 33d3014bf48945979a5e3851a2845e635723fa6c Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Thu, 20 Sep 2018 21:59:56 +0200 Subject: Use `uwsgi` instead of `gunicorn`. --- docker/app/stretch/3.6/Dockerfile | 2 +- docker/app/stretch/3.7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docker/app/stretch') diff --git a/docker/app/stretch/3.6/Dockerfile b/docker/app/stretch/3.6/Dockerfile index 0e840899..07911778 100644 --- a/docker/app/stretch/3.6/Dockerfile +++ b/docker/app/stretch/3.6/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"] 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"] -- cgit v1.2.3