aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/alpine/3.7
diff options
context:
space:
mode:
Diffstat (limited to 'docker/app/alpine/3.7')
-rw-r--r--docker/app/alpine/3.7/Dockerfile4
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile
index 5e737fbf..1d61fcaa 100644
--- a/docker/app/alpine/3.7/Dockerfile
+++ b/docker/app/alpine/3.7/Dockerfile
@@ -6,7 +6,6 @@ RUN apk add \
automake \
cmake \
gcc \
- git \
libpq \
musl-dev \
postgresql-dev
@@ -19,7 +18,6 @@ COPY . .
RUN apk del \
automake \
cmake \
- gcc \
- git
+ gcc
CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"]