Skip to content

Commit 7532faa

Browse files
committed
RHAIENG-2189: configure PIP_INDEX_URL because we've changed our mind (#2760)
1 parent 16230da commit 7532faa

File tree

24 files changed

+119
-119
lines changed

24 files changed

+119
-119
lines changed

codeserver/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ FROM ${BASE_IMAGE} AS cpu-base
7373
WORKDIR /opt/app-root/bin
7474

7575
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
76-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
77-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
78-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
79-
# https://docs.astral.sh/uv/reference/environment/#uv_index
80-
ENV UV_INDEX=https://pypi.org/simple
76+
ENV PIP_INDEX_URL=https://pypi.org/simple
77+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
78+
ENV UV_INDEX_URL=https://pypi.org/simple
79+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
80+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
8181
### END RHAIENG-2189: this is AIPCC migration phase 1.5
8282

8383
# OS Packages needs to be installed as root

jupyter/datascience/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,11 @@ ARG MINIMAL_SOURCE_CODE=jupyter/minimal/ubi9-python-3.12
269269
WORKDIR /opt/app-root/bin
270270

271271
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
272-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
273-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
274-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
275-
# https://docs.astral.sh/uv/reference/environment/#uv_index
276-
ENV UV_INDEX=https://pypi.org/simple
272+
ENV PIP_INDEX_URL=https://pypi.org/simple
273+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
274+
ENV UV_INDEX_URL=https://pypi.org/simple
275+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
276+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
277277
### END RHAIENG-2189: this is AIPCC migration phase 1.5
278278

279279
COPY ${JUPYTER_REUSABLE_UTILS} utils/

jupyter/minimal/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ FROM registry.access.redhat.com/ubi9/ubi AS ubi-repos
1212
FROM ${BASE_IMAGE} AS cpu-base
1313

1414
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
15-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
16-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
17-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
18-
# https://docs.astral.sh/uv/reference/environment/#uv_index
19-
ENV UV_INDEX=https://pypi.org/simple
15+
ENV PIP_INDEX_URL=https://pypi.org/simple
16+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
17+
ENV UV_INDEX_URL=https://pypi.org/simple
18+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
19+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
2020
### END RHAIENG-2189: this is AIPCC migration phase 1.5
2121

2222
WORKDIR /opt/app-root/bin

jupyter/minimal/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ ARG BASE_IMAGE
1111
FROM ${BASE_IMAGE} AS cuda-base
1212

1313
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
14-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
15-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
16-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
17-
# https://docs.astral.sh/uv/reference/environment/#uv_index
18-
ENV UV_INDEX=https://pypi.org/simple
14+
ENV PIP_INDEX_URL=https://pypi.org/simple
15+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
16+
ENV UV_INDEX_URL=https://pypi.org/simple
17+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
18+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
1919
### END RHAIENG-2189: this is AIPCC migration phase 1.5
2020

2121
WORKDIR /opt/app-root/bin

jupyter/minimal/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ ARG BASE_IMAGE
99
FROM ${BASE_IMAGE} AS rocm-base
1010

1111
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
12-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
13-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
14-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
15-
# https://docs.astral.sh/uv/reference/environment/#uv_index
16-
ENV UV_INDEX=https://pypi.org/simple
12+
ENV PIP_INDEX_URL=https://pypi.org/simple
13+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
14+
ENV UV_INDEX_URL=https://pypi.org/simple
15+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
16+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
1717
### END RHAIENG-2189: this is AIPCC migration phase 1.5
1818

1919
WORKDIR /opt/app-root/bin

jupyter/pytorch+llmcompressor/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ ARG PYTORCH_SOURCE_CODE=jupyter/pytorch+llmcompressor/ubi9-python-3.12
142142
WORKDIR /opt/app-root/bin
143143

144144
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
145-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
146-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
147-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
148-
# https://docs.astral.sh/uv/reference/environment/#uv_index
149-
ENV UV_INDEX=https://pypi.org/simple
145+
ENV PIP_INDEX_URL=https://pypi.org/simple
146+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
147+
ENV UV_INDEX_URL=https://pypi.org/simple
148+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
149+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
150150
### END RHAIENG-2189: this is AIPCC migration phase 1.5
151151

152152
LABEL name="odh-notebook-jupyter-cuda-pytorch-llmcompressor-ubi9-python-3.12" \

jupyter/pytorch/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ ARG PYTORCH_SOURCE_CODE=jupyter/pytorch/ubi9-python-3.12
142142
WORKDIR /opt/app-root/bin
143143

144144
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
145-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
146-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
147-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
148-
# https://docs.astral.sh/uv/reference/environment/#uv_index
149-
ENV UV_INDEX=https://pypi.org/simple
145+
ENV PIP_INDEX_URL=https://pypi.org/simple
146+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
147+
ENV UV_INDEX_URL=https://pypi.org/simple
148+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
149+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
150150
### END RHAIENG-2189: this is AIPCC migration phase 1.5
151151

152152
LABEL name="odh-notebook-jupyter-cuda-pytorch-ubi9-python-3.12" \

jupyter/rocm/pytorch/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ ARG DATASCIENCE_SOURCE_CODE=jupyter/datascience/ubi9-python-3.12
110110
WORKDIR /opt/app-root/bin
111111

112112
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
113-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
114-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
115-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
116-
# https://docs.astral.sh/uv/reference/environment/#uv_index
117-
ENV UV_INDEX=https://pypi.org/simple
113+
ENV PIP_INDEX_URL=https://pypi.org/simple
114+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
115+
ENV UV_INDEX_URL=https://pypi.org/simple
116+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
117+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
118118
### END RHAIENG-2189: this is AIPCC migration phase 1.5
119119

120120
# OS Packages needs to be installed as root

jupyter/rocm/tensorflow/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ ARG DATASCIENCE_SOURCE_CODE=jupyter/datascience/ubi9-python-3.12
110110
WORKDIR /opt/app-root/bin
111111

112112
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
113-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
114-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
115-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
116-
# https://docs.astral.sh/uv/reference/environment/#uv_index
117-
ENV UV_INDEX=https://pypi.org/simple
113+
ENV PIP_INDEX_URL=https://pypi.org/simple
114+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
115+
ENV UV_INDEX_URL=https://pypi.org/simple
116+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
117+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
118118
### END RHAIENG-2189: this is AIPCC migration phase 1.5
119119

120120
# OS Packages needs to be installed as root

jupyter/tensorflow/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ ARG DATASCIENCE_SOURCE_CODE=jupyter/datascience/ubi9-python-3.12
112112
WORKDIR /opt/app-root/bin
113113

114114
### BEGIN RHAIENG-2189: this is AIPCC migration phase 1.5
115-
ENV PIP_EXTRA_INDEX_URL=https://pypi.org/simple
116-
# UV_EXTRA_INDEX_URL is deprecated in favor of UV_INDEX
117-
ENV UV_EXTRA_INDEX_URL=https://pypi.org/simple
118-
# https://docs.astral.sh/uv/reference/environment/#uv_index
119-
ENV UV_INDEX=https://pypi.org/simple
115+
ENV PIP_INDEX_URL=https://pypi.org/simple
116+
# UV_INDEX_URL is deprecated in favor of UV_DEFAULT_INDEX
117+
ENV UV_INDEX_URL=https://pypi.org/simple
118+
# https://docs.astral.sh/uv/reference/environment/#uv_default_index
119+
ENV UV_DEFAULT_INDEX=https://pypi.org/simple
120120
### END RHAIENG-2189: this is AIPCC migration phase 1.5
121121

122122
# OS Packages needs to be installed as root

0 commit comments

Comments
 (0)