Skip to content
Snippets Groups Projects
Dockerfile 227 B
FROM python:3.7

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

# Install pipenv
RUN pip install pipenv

WORKDIR /code
RUN rm -rf Dockerfile

# Copy Pipfile and install
COPY . /code/
RUN pipenv install --system --deploy