diff --git a/Dockerfile.cicd-base b/Dockerfile.cicd-base index 46f1540..199594f 100644 --- a/Dockerfile.cicd-base +++ b/Dockerfile.cicd-base @@ -101,8 +101,12 @@ RUN yarn config set httpTimeout 60000 && \ yarn config set compressionLevel 0 && \ yarn config set nmMode hardlinks-local -# Install uv package manager globally -COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv +# Install uv package manager globally without requiring GHCR pulls +RUN set -euo pipefail && \ + curl -LsSf https://astral.sh/uv/install.sh | sh && \ + cp /root/.local/bin/uv /usr/local/bin/uv && \ + chmod +x /usr/local/bin/uv && \ + uv --version # Install common development tools globally using npm (more reliable for global installs) RUN echo "=== Installing Global Development Tools ===" && \