From 79be36e89686667d4de0bbdc5a8c9a8fbef9c3f5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 29 Sep 2017 13:45:57 -0400 Subject: [PATCH] upgrades to Dockerfile Signed-off-by: Kenneth Reitz --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile b/Dockerfile index cae71bf1..91a65802 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,3 +15,13 @@ FROM python:3.6.2 # -- Install Pipenv: RUN pip install pipenv --upgrade + +# -- Install Application into container: +RUN mkdir /app +WORKDIR /app +COPY Pipfile Pipfile +COPY Pipfile.lock Pipfile.lock +COPY . /app + +# -- Install dependencies: +RUN pipenv install --system \ No newline at end of file