mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
upgrades to Dockerfile
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
+10
@@ -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
|
||||
Reference in New Issue
Block a user