We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a37f7 commit 4a1fa23Copy full SHA for 4a1fa23
poetry-and-virtualenv/Dockerfile
@@ -1,11 +1,10 @@
1
FROM python:3.10-slim-bookworm AS setup
2
-RUN apt-get update -y && apt-get install git -y
3
4
WORKDIR /myapp/
5
RUN \
6
python -m venv --upgrade-deps .venv \
7
&& .venv/bin/python -m pip install 'poetry==2.0.1' \
8
- && .venv/bin/python -m pip install 'git+https://github.com/robsdedude/virtualenv.git@fix/py-info-cache-versioning'
+ && .venv/bin/python -m pip install 'virtualenv==20.29.1'
9
10
COPY pyproject.toml poetry.lock poetry.toml ./
11
COPY src src
0 commit comments