This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 26d0005 Fix uv install location to /opt/bin (#417)
26d0005 is described below
commit 26d0005388b9c9ceb12dbabaeeb8955a1b952a25
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Jan 6 17:35:54 2026 -0600
Fix uv install location to /opt/bin (#417)
---
docker/fedora42/Dockerfile | 2 +-
docker/fedora43/Dockerfile | 2 +-
docker/rockylinux8/Dockerfile | 1 +
docker/rockylinux9/Dockerfile | 1 +
4 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/docker/fedora42/Dockerfile b/docker/fedora42/Dockerfile
index acd35f8..9091795 100644
--- a/docker/fedora42/Dockerfile
+++ b/docker/fedora42/Dockerfile
@@ -249,7 +249,7 @@ RUN <<EOF
EOF
RUN pip3 install pipenv httpbin
-RUN curl -LsSf https://astral.sh/uv/install.sh | sh
+RUN export XDG_BIN_HOME=/opt/bin && curl -LsSf https://astral.sh/uv/install.sh
| sh
# Add the CI's test user. N.B: 1200 is the uid that our jenkins user is
# configured with, so that has to be used. Otherwise there will be permissions
diff --git a/docker/fedora43/Dockerfile b/docker/fedora43/Dockerfile
index 4b8c995..70da272 100644
--- a/docker/fedora43/Dockerfile
+++ b/docker/fedora43/Dockerfile
@@ -249,7 +249,7 @@ RUN <<EOF
EOF
RUN pip3 install pipenv httpbin
-RUN curl -LsSf https://astral.sh/uv/install.sh | sh
+RUN export XDG_BIN_HOME=/opt/bin && curl -LsSf https://astral.sh/uv/install.sh
| sh
# Add the CI's test user. N.B: 1200 is the uid that our jenkins user is
# configured with, so that has to be used. Otherwise there will be permissions
diff --git a/docker/rockylinux8/Dockerfile b/docker/rockylinux8/Dockerfile
index 1d26f4a..f8e3cad 100644
--- a/docker/rockylinux8/Dockerfile
+++ b/docker/rockylinux8/Dockerfile
@@ -91,6 +91,7 @@ RUN <<EOF
python3.12 -m pip install --upgrade pip
python3.12 -m pip install pipenv httpbin
+ export XDG_BIN_HOME=/opt/bin
curl -LsSf https://astral.sh/uv/install.sh | sh
EOF
diff --git a/docker/rockylinux9/Dockerfile b/docker/rockylinux9/Dockerfile
index b640130..1576b30 100644
--- a/docker/rockylinux9/Dockerfile
+++ b/docker/rockylinux9/Dockerfile
@@ -38,6 +38,7 @@ RUN <<EOF
set -e
pip3 install --upgrade pip
pip3 install pipenv httpbin
+ export XDG_BIN_HOME=/opt/bin
curl -LsSf https://astral.sh/uv/install.sh | sh
EOF