Skip to content

Commit 67c2f05

Browse files
committed
Docker/Accelerated Python: Don't update pip.
1 parent df84333 commit 67c2f05

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tutorials/accelerated-python/brev/dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ COPY tutorials/${ACH_TUTORIAL}/brev/requirements.txt /opt/requirements.txt
1818

1919
# Remove externally managed flag and install Python packages.
2020
RUN rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED \
21-
&& python -m pip install --no-cache-dir --root-user-action=ignore --upgrade pip \
2221
&& pip install --no-cache-dir --root-user-action=ignore -r /opt/requirements.txt \
2322
&& rm -f /opt/requirements.txt
2423

@@ -46,7 +45,6 @@ RUN mkdir -p ~/.local/state/._bash_history \
4645
# Create an isolated Python env with cuDF and cuML, and register it as a Jupyter kernel
4746
ENV ACH_RAPIDS_VENV=/opt/venvs/rapids
4847
RUN python -m venv ${ACH_RAPIDS_VENV} \
49-
&& ${ACH_RAPIDS_VENV}/bin/python -m pip install --no-cache-dir --upgrade pip \
5048
&& ${ACH_RAPIDS_VENV}/bin/pip install --no-cache-dir \
5149
--extra-index-url=https://pypi.nvidia.com \
5250
"cudf-cu12==25.10.*" \

0 commit comments

Comments
 (0)