From 4ed78b48672a99204e11e9ec02fac570abdf22a2 Mon Sep 17 00:00:00 2001 From: Jacob Magar Date: Fri, 13 Mar 2026 10:59:53 -0400 Subject: [PATCH] fix: pin uv image tag to 0.9.25 instead of floating 0.6 minor tag --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28b5d4a..f8751d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.12-slim WORKDIR /app # Install uv (pinned tag to avoid mutable latest) -COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /usr/local/bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.25 /uv /uvx /usr/local/bin/ # Create non-root user with home directory and give ownership of /app RUN groupadd --gid 1000 appuser && \