From 212b37714738f67373c3b34b5b02e81576aa05d6 Mon Sep 17 00:00:00 2001 From: copilotcoder Date: Wed, 20 May 2026 16:25:02 -0400 Subject: [PATCH] fix(ci): make uv install step sh-compatible --- Dockerfile.cicd-base | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.cicd-base b/Dockerfile.cicd-base index 11f5a6d..f9fa669 100644 --- a/Dockerfile.cicd-base +++ b/Dockerfile.cicd-base @@ -102,8 +102,10 @@ RUN yarn config set httpTimeout 60000 && \ yarn config set nmMode hardlinks-local # Install uv package manager globally without requiring GHCR pulls -RUN set -euo pipefail && \ - curl -LsSf https://astral.sh/uv/install.sh | sh && \ +RUN set -eu && \ + curl -LsSf https://astral.sh/uv/install.sh -o /tmp/uv-install.sh && \ + sh /tmp/uv-install.sh && \ + rm -f /tmp/uv-install.sh && \ cp /root/.local/bin/uv /usr/local/bin/uv && \ chmod +x /usr/local/bin/uv && \ uv --version