From 4150a17a378b8437119d7e408dc3ef042353961b Mon Sep 17 00:00:00 2001 From: Marco Crapts Date: Sun, 19 Jan 2025 13:14:30 +0100 Subject: [PATCH] update to uv 0.5.21 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a467b33..a3aa9ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN npm run build FROM python:3.12-slim COPY --from=frontend /app/dist /app/dist WORKDIR /app/server-python -COPY --from=ghcr.io/astral-sh/uv:0.4.7 /uv /bin/uv +COPY --from=ghcr.io/astral-sh/uv:0.5.21 /uv /bin/uv COPY server-python/pyproject.toml server-python/uv.lock ./ RUN uv sync --no-dev --frozen COPY server-python/app.py .