diff --git a/Dockerfile b/Dockerfile index cb47db3..4728ab2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,9 @@ RUN apk add --no-cache gcc musl-dev python3-dev RUN pip install uv COPY pyproject.toml . -RUN uv init +COPY uv.lock . + +RUN uv pip install --system . COPY . .