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/alpine/3.7/Dockerfile | |
parent | Omit `HEALTHCHECK`. (diff) |
Use `uwsgi` instead of `gunicorn`.
Diffstat (limited to 'docker/app/alpine/3.7/Dockerfile')
-rw-r--r-- | docker/app/alpine/3.7/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile index e52c526c..524d0bfa 100644 --- a/docker/app/alpine/3.7/Dockerfile +++ b/docker/app/alpine/3.7/Dockerfile @@ -4,6 +4,7 @@ ARG EXTRAS=deploy RUN apk add --no-cache --virtual build \ gcc \ + linux-headers \ musl-dev \ && \ apk add --no-cache \ @@ -17,4 +18,4 @@ RUN apk del --purge build COPY . . -CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"] +CMD ["uwsgi", "--ini", "docker/app/uwsgi.ini"] |