diff options
Diffstat (limited to 'docker/app/stretch/3.7/Dockerfile')
-rw-r--r-- | docker/app/stretch/3.7/Dockerfile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docker/app/stretch/3.7/Dockerfile b/docker/app/stretch/3.7/Dockerfile index cc991e34..70d18dbc 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 \ - automake \ gcc \ libc-dev \ libpq-dev @@ -15,7 +14,6 @@ RUN python3 -m pip install .[$EXTRAS] COPY . . RUN apt-get purge -y \ - automake \ gcc CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:applicati |