From 35616abce259780f76675eefa55c453ed3640b95 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Tue, 18 Sep 2018 20:01:22 +0200 Subject: Omit `autoconf`. --- docker/app/stretch/3.7/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'docker/app/stretch/3.7') 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 -- cgit v1.2.3