aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/alpine/3.6
diff options
context:
space:
mode:
Diffstat (limited to 'docker/app/alpine/3.6')
-rw-r--r--docker/app/alpine/3.6/Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/app/alpine/3.6/Dockerfile b/docker/app/alpine/3.6/Dockerfile
index b9cb557b..7578418c 100644
--- a/docker/app/alpine/3.6/Dockerfile
+++ b/docker/app/alpine/3.6/Dockerfile
@@ -19,9 +19,10 @@ RUN apk add --no-cache --virtual build \
postgresql-dev
WORKDIR /app
-COPY setup.py /app/setup.py
-RUN python3 -m pip install .[$EXTRAS]
-RUN apk del --purge build
+COPY pyproject.toml /app/pyproject.toml
+RUN python3 -m pip install poetry \
+ && python3 -m poetry install --extras deploy \
+ && apk del --purge build
COPY . .