From 5241613144afbf71d3a8df118df19a050b3a92fc Mon Sep 17 00:00:00 2001 From: Andrew Ridgway Date: Tue, 19 May 2026 23:31:21 +1000 Subject: [PATCH] change uv install --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ae6638..9d659a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ RUN curl -Lo /bin/hadolint https://github.com/hadolint/hadolint/releases/downloa RUN pip install checkov semgrep RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin -# Install UV -COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +# Install UV via pip (no ghcr.io dependency) +RUN pip install uv WORKDIR /app COPY pyproject.toml . @@ -44,7 +44,6 @@ COPY src/ ./src/ COPY mcp_servers/ ./mcp_servers/ COPY crews/ ./crews/ COPY tools/ ./tools/ -COPY config/ ./config/ COPY contexts/ ./contexts/ COPY README.md .