diff options
Diffstat (limited to 'docker/app/stretch/3.7/Dockerfile')
-rw-r--r-- | docker/app/stretch/3.7/Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docker/app/stretch/3.7/Dockerfile b/docker/app/stretch/3.7/Dockerfile index 42187a9b..67251723 100644 --- a/docker/app/stretch/3.7/Dockerfile +++ b/docker/app/stretch/3.7/Dockerfile @@ -4,7 +4,6 @@ ARG EXTRAS=deploy RUN apt-get update -y RUN apt-get install -y \ - autoconf \ automake \ cmake \ gcc \ @@ -17,4 +16,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:applicati |