mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
62c1a1e1af
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
24 lines
413 B
Docker
24 lines
413 B
Docker
FROM python:3.6.2
|
|
|
|
# -- Install Pipenv:
|
|
RUN pip install pipenv --upgrade
|
|
|
|
# -- Install Application into container:
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
# --------------------
|
|
# - Using This File: -
|
|
# --------------------
|
|
|
|
# FROM kennethreitz/pipenv
|
|
|
|
# COPY Pipfile Pipfile
|
|
# COPY Pipfile.lock Pipfile.lock
|
|
# COPY . /app
|
|
|
|
# -- Install dependencies:
|
|
# RUN pipenv install --deploy --system
|
|
|
|
ENTRYPOINT []
|
|
CMD [ "/bin/bash" ] |