diff options
author | 2019-01-20 09:52:57 +0100 | |
---|---|---|
committer | 2019-01-20 09:52:57 +0100 | |
commit | bdc337d70a386cae954399e55bb128119f601128 (patch) | |
tree | f1b90e9a2c028478e1b82325704ffdd943c4b3b6 /docker | |
parent | Merge branch 'django' into django+add-logs-api. (diff) | |
parent | Add an example `docker-compose.yml`. (diff) |
Merge branch 'django' into django+add-logs-api
Diffstat (limited to 'docker')
-rw-r--r-- | docker/app/alpine/3.7/Dockerfile | 8 |
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 . . |