Skip to content

Commit

Permalink
Use pipenv sync
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Mar 3, 2021
1 parent 76d52da commit a938fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN \
cd /app/ && \
python3 -m pip install --disable-pip-version-check --no-cache-dir --no-deps \
--requirement=/app/requirements.txt && \
pipenv install --system --clear && \
pipenv sync --system --clear && \
python3 -m compileall /usr/local/lib/python3.8 /usr/lib/python3.8 -q \
-x '/usr/local/lib/python3.8/dist-packages/pipenv/' && \
strip /usr/local/lib/python3.8/dist-packages/shapely/*/*.so && \
Expand Down Expand Up @@ -95,7 +95,7 @@ RUN \

FROM runner as tests

RUN (cd /app/ && pipenv install --dev --system --clear)
RUN (cd /app/ && pipenv sync --dev --system --clear)
RUN (cd /app/ && prospector)

FROM runner

0 comments on commit a938fae

Please sign in to comment.