diff options
author | 2018-09-18 20:54:20 +0200 | |
---|---|---|
committer | 2018-09-18 20:54:20 +0200 | |
commit | f8c3a4139caab44eabd7781242f533c33f630e2b (patch) | |
tree | c4acf06c3f9259c28ac1a3b64d8af8a54c0c5b3f /docker/app/stretch/3.7/Dockerfile | |
parent | Omit `cmake`. (diff) |
Omit `automake`.
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 |