aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/app/alpine/3.7/Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile
index 4a8b5b34..a2023977 100644
--- a/docker/app/alpine/3.7/Dockerfile
+++ b/docker/app/alpine/3.7/Dockerfile
@@ -9,19 +9,19 @@ RUN adduser \
-u 1500 \
pysite
-RUN apk add --no-cache --virtual build \
+RUN apk add --no-cache --update --virtual build \
gcc \
linux-headers \
musl-dev \
&& \
- apk add --no-cache \
+ apk add \
curl \
postgresql-dev
WORKDIR /app
COPY setup.py /app/setup.py
-RUN python3 -m pip install .[$EXTRAS]
-RUN apk del --purge build
+RUN python3 -m pip install .[$EXTRAS] \
+ && apk del --purge build
COPY . .