diff options
author | 2018-09-18 20:01:22 +0200 | |
---|---|---|
committer | 2018-09-18 20:09:45 +0200 | |
commit | 35616abce259780f76675eefa55c453ed3640b95 (patch) | |
tree | 51944d549e5207f3a26ee9d21f02606d2c16af2d /docker/app/stretch/3.6/Dockerfile | |
parent | Revert "Try to re-add host key checks." (diff) |
Omit `autoconf`.
Diffstat (limited to 'docker/app/stretch/3.6/Dockerfile')
-rw-r--r-- | docker/app/stretch/3.6/Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docker/app/stretch/3.6/Dockerfile b/docker/app/stretch/3.6/Dockerfile index d12c9406..8d00ed33 100644 --- a/docker/app/stretch/3.6/Dockerfile +++ b/docker/app/stretch/3.6/Dockerfile @@ -4,7 +4,6 @@ ARG EXTRAS=deploy RUN apt-get update -y RUN apt-get install -y \ - autoconf \ automake \ cmake \ gcc \ @@ -18,4 +17,10 @@ COPY setup.py /app/setup.py RUN python3 -m pip install .[$EXTRAS] COPY . . +RUN apt-get purge -y \ + automake \ + cmake \ + gcc \ + git + CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"] |