diff options
Diffstat (limited to 'docker/app/alpine/3.7/Dockerfile')
-rw-r--r-- | docker/app/alpine/3.7/Dockerfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile index e7c8d696..83dbdb96 100644 --- a/docker/app/alpine/3.7/Dockerfile +++ b/docker/app/alpine/3.7/Dockerfile @@ -5,11 +5,10 @@ ARG EXTRAS=deploy # Build-time dependencies: To be removed later. RUN apk add --virtual build \ gcc \ - musl-dev \ - postgresql-dev + musl-dev -# Used by the healthcheck. -RUN apk add --no-cache curl +# Used by the healthcheck and shared library used by psycopg2. +RUN apk add --no-cache curl postgresql-dev WORKDIR /app COPY setup.py /app/setup.py |