aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/alpine/3.7/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/app/alpine/3.7/Dockerfile')
-rw-r--r--docker/app/alpine/3.7/Dockerfile2
1 files changed, 0 insertions, 2 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile
index f17a41c3..698e32f2 100644
--- a/docker/app/alpine/3.7/Dockerfile
+++ b/docker/app/alpine/3.7/Dockerfile
@@ -3,7 +3,6 @@ FROM python:3.7-alpine
ARG EXTRAS=deploy
RUN apk add \
- automake \
gcc \
libpq \
musl-dev \
@@ -15,7 +14,6 @@ RUN python3 -m pip install .[$EXTRAS]
COPY . .
RUN apk del \
- automake \
gcc
CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"]