diff options
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"] |