From c92b9daeb968466822a18fbbb38b96f71a0feefb Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 25 Dec 2025 22:04:04 -0800 Subject: [PATCH] fix e2e --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3964891b..5df74e4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,8 @@ WORKDIR /app COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv # Copy Python dependency files -COPY cli/pyproject.toml cli/uv.lock ./ +COPY cli/pyproject.toml ./ +COPY cli/uv.lock ./ # Install dependencies using uv RUN uv sync --frozen --no-dev