upgrades to Dockerfile

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-29 13:45:57 -04:00
parent 1a9f9d1b90
commit 79be36e896
+10
View File
@@ -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