Skip to content

Commit 228b3f1

Browse files
committed
Singleruser docker install req step fix.
1 parent 7c4d319 commit 228b3f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile_singleuser

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ RUN uv pip install --upgrade --system pip setuptools wheel
214214
COPY ./requirements.txt /srv/jupyterhub/
215215

216216
RUN if [ "$GPU_BUILD" = "true" ] && [ "$CPU_ARCHITECTURE" = "amd64" ]; then \
217-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt \
217+
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt ; \
218218
else \
219-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ \
219+
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ ; \
220220
fi
221221

222222
#######################################################################################################

0 commit comments

Comments
 (0)