diff --git a/Dockerfile b/Dockerfile index cb8622c..accb51d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,10 @@ FROM python:3.12-slim AS builder WORKDIR /app -# Install uv for fast dependency management -RUN pip install uv +# Install git (required for git-based dependencies) and uv +RUN apt-get update && apt-get install -y --no-install-recommends git \ + && rm -rf /var/lib/apt/lists/* \ + && pip install uv # Copy pyproject.toml first to leverage Docker cache COPY pyproject.toml .