Skip to content

Commit

Permalink
Update pipenv Dockerfile to fix build error.
Browse files Browse the repository at this point in the history
They removed pipenv lock -r, so we need to update it

pypa/pipenv#5253
  • Loading branch information
koscelansky committed Aug 16, 2022
1 parent 1cc676c commit 76f63a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cppseminar/vm-test-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app/src
COPY . .

RUN pip install pipenv \
&& pipenv lock --keep-outdated --requirements > requirements.txt \
&& pipenv requirements > requirements.txt \
&& pip install -r requirements.txt

ENTRYPOINT ["python", "./main.py"]

0 comments on commit 76f63a7

Please sign in to comment.