Skip to content

Commit 96bab75

Browse files
committed
remove verbose
1 parent 5d5dec1 commit 96bab75

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

common/jenkins-agents/python/docker/Dockerfile.ubi9

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ RUN PACKAGES="virtualenv==20.26.3 setuptools==72.2.0 Cython==3.0.11 pypandoc==1.
3030
for pyVersion in 3.8 3.9 3.11 3.12; do \
3131
uv python install $pyVersion && \
3232
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
33-
uv pip install --verbose --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} $PACKAGES; \
33+
uv pip install --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} $PACKAGES; \
3434
else \
35-
uv pip install --verbose --system --break-system-packages --python $pyVersion $PACKAGES; \
35+
uv pip install --system --break-system-packages --python $pyVersion $PACKAGES; \
3636
fi; \
3737
done && \
3838
uv tool update-shell

common/jenkins-agents/terraform-2306/docker/Dockerfile.ubi9

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ RUN curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh && \
7878
RUN for pyVersion in 3.8 3.9 3.11; do \
7979
uv python install $pyVersion && \
8080
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
81-
uv pip install --verbose --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
81+
uv pip install --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
8282
virtualenv \
8383
pycodestyle \
8484
-r /tmp/requirements.txt; \
8585
else \
86-
uv pip install --verbose --system --break-system-packages --python $pyVersion --prerelease=allow \
86+
uv pip install --system --break-system-packages --python $pyVersion --prerelease=allow \
8787
virtualenv \
8888
pycodestyle \
8989
-r /tmp/requirements.txt; \

common/jenkins-agents/terraform-2408/docker/Dockerfile.ubi9

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ RUN curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh && \
7878
RUN for pyVersion in 3.9 3.11 3.12; do \
7979
uv python install $pyVersion && \
8080
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
81-
uv pip install --verbose --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
81+
uv pip install --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
8282
virtualenv \
8383
pycodestyle \
8484
-r /tmp/requirements.txt; \
8585
else \
86-
uv pip install --verbose --system --break-system-packages --python $pyVersion --prerelease=allow \
86+
uv pip install --system --break-system-packages --python $pyVersion --prerelease=allow \
8787
virtualenv \
8888
pycodestyle \
8989
-r /tmp/requirements.txt; \

0 commit comments

Comments
 (0)