Skip to content

Commit

Permalink
pipenv has been change and now you need to use pipenv requirements to…
Browse files Browse the repository at this point in the history
… create requirements.txt file
  • Loading branch information
reihl committed Jul 14, 2024
1 parent 4c9b4aa commit 36cb9da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ COPY Pipfile ./Pipfile
# Generate requirements.txt file from Pipfile
RUN if [ -z ${DEV} ]; \
then \
pipenv lock && \
pipenv lock -r > requirements.txt; \
else \
pipenv lock --dev && \
pipenv lock --dev -r > requirements.txt; \
fi

Expand Down

0 comments on commit 36cb9da

Please sign in to comment.