We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a763c commit 89ef144Copy full SHA for 89ef144
1 file changed
common/jenkins-agents/python/docker/Dockerfile.ubi9
@@ -30,7 +30,7 @@ RUN PACKAGES="virtualenv==20.26.3 setuptools==72.2.0 Cython==3.0.11 pypandoc==1.
30
for pyVersion in 3.8 3.9 3.11 3.12; do \
31
uv python install $pyVersion && \
32
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
33
- uv pip install --verbose --system --break-system-packages --python $pyVersion --trusted-host ${nexusHost} $PACKAGES; \
+ uv pip install --verbose --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} $PACKAGES; \
34
else \
35
uv pip install --verbose --system --break-system-packages --python $pyVersion $PACKAGES; \
36
fi; \
0 commit comments