aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/alpine/3.7
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-17 23:48:11 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-17 23:51:13 +0200
commit98961aa1742cb17d5f2804cb1653f7a4f9baeb4e (patch)
tree8c13c8a0ffe1fdde0e3717644aa24802ba0471bc /docker/app/alpine/3.7
parentAdd `SECRET_KEY` to test invocations. (diff)
Try to cache requirements.
Diffstat (limited to 'docker/app/alpine/3.7')
-rw-r--r--docker/app/alpine/3.7/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile
index 33a6c12c..8c413932 100644
--- a/docker/app/alpine/3.7/Dockerfile
+++ b/docker/app/alpine/3.7/Dockerfile
@@ -12,9 +12,10 @@ RUN apk add \
musl-dev \
postgresql-dev
-COPY . /app
WORKDIR /app
+COPY setup.py /app/setup.py
RUN python3 -m pip install .[$EXTRAS]
+COPY . .
RUN apk del \
autoconf \