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