mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
fc5abf1f4e
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
28 lines
477 B
Docker
28 lines
477 B
Docker
FROM python:3.6.2
|
|
FROM python:3.4.5
|
|
FROM python:3.5.4
|
|
FROM python:2.7.14
|
|
FROM python:3.3.6
|
|
|
|
# -- 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
|
|
|
|
ENTRYPOINT []
|
|
CMD [ "/bin/bash" ] |