aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/stretch/3.6/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/app/stretch/3.6/Dockerfile')
-rw-r--r--docker/app/stretch/3.6/Dockerfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/docker/app/stretch/3.6/Dockerfile b/docker/app/stretch/3.6/Dockerfile
index 8a37925c..3ce69018 100644
--- a/docker/app/stretch/3.6/Dockerfile
+++ b/docker/app/stretch/3.6/Dockerfile
@@ -21,8 +21,12 @@ RUN apt-get update -y \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
-COPY setup.py /app/setup.py
-RUN python3 -m pip install .[$EXTRAS]
+
+COPY Pipfile /app/Pipfile
+COPY Pipfile.lock /app/Pipfile.lock
+RUN python3 -m pip install pipenv \
+ && python3 -m pipenv install --dev --system --deploy
+
COPY . .
RUN apt-get purge -y \