From 109f62eb58f5ae1ab21cb0ee3d030ff16069789f Mon Sep 17 00:00:00 2001 From: belviskhoremk Date: Mon, 6 Apr 2026 22:35:36 +0000 Subject: [PATCH] updated Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 . .