Skip to content

Commit 6bd77b7

Browse files
committed
Update Dockerfile to include pip in virtualenv
1 parent 23d6241 commit 6bd77b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@ RUN uv venv
3838
ENV VIRTUAL_ENV=/.venv
3939
ENV PATH="/bin:$VIRTUAL_ENV/bin:$PATH"
4040

41-
# Install modern Python package managers for completeness
42-
RUN uv pip install --no-cache poetry pipenv pdm
41+
# Install pip in the virtualenv for standard pip usage
42+
# Then install other modern Python package managers
43+
RUN uv pip install --no-cache pip poetry pipenv pdm

0 commit comments

Comments
 (0)