Skip to content
Snippets Groups Projects

Usepipenv

Merged Kenzo-Hugo Hillion requested to merge usepipenv into master
6 files
+ 523
63
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 5
6
@@ -2,13 +2,12 @@ FROM python:3.7
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV WEB_DOCKER 1
# Install pipenv
RUN pip install pipenv
WORKDIR /code
# Copy requirements and install
COPY requirements.txt /code/
RUN pip install -r requirements.txt
# Copy the project and install
# Copy Pipfile and install
COPY . /code/
RUN pip install -e .
\ No newline at end of file
RUN pipenv install --system --deploy
Loading