From 286e2e4d1f81686ee5332641b992806b4cfcf3d9 Mon Sep 17 00:00:00 2001 From: ITQ Date: Wed, 18 Feb 2026 16:30:26 +0300 Subject: [PATCH] build(): pinned to specific UV package manager version in build --- src/backend/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/Containerfile b/src/backend/Containerfile index fb7bed2..7e3dfb6 100644 --- a/src/backend/Containerfile +++ b/src/backend/Containerfile @@ -1,7 +1,7 @@ # Stage 1: Build dependencies FROM docker.io/python:3.13-alpine3.22 AS deps -COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.10.4 /uv /uvx /bin/ WORKDIR /app