From a57aa8b145c3313128114f056a4e621cb93b199f Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 25 Dec 2025 22:10:44 -0800 Subject: [PATCH] fix build --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5df74e4b..9cdf2b98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,12 +31,13 @@ COPY --from=envoy /usr/local/bin/envoy /usr/local/bin/envoy WORKDIR /app -# Install uv -COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv +# Install uv using pip +RUN pip install --no-cache-dir uv # Copy Python dependency files COPY cli/pyproject.toml ./ COPY cli/uv.lock ./ +COPY cli/README.md ./ # Install dependencies using uv RUN uv sync --frozen --no-dev