From e6a9bbd43ecbb8d293e33fa4053912f3101edd62 Mon Sep 17 00:00:00 2001 From: Helmut Hoffer von Ankershoffen Date: Sat, 25 Apr 2026 00:18:58 +0200 Subject: [PATCH] fix(ci): bump Dockerfile uv pin to 0.11.7 to match pyproject.toml >=0.11.6 PYSDK-98 PYSDK-93 bumped pyproject.toml uv>=0.11.6 for GHSA-pjjw-68hj-v9mw and regenerated uv.lock with uv 0.11.x lockfile syntax. The Dockerfile pin at ghcr.io/astral-sh/uv:0.9.18 was not updated, so every Docker build step now fails with `uv sync --frozen` exit code 2 on lockfile parse. Bump to 0.11.7 to match what CI installs on the host. Co-Authored-By: Claude Opus 4.7 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index caabc7768..ab056b388 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.14.3-slim-trixie AS base FROM base AS builder # Copy in UV -COPY --from=ghcr.io/astral-sh/uv:0.9.18 /uv /bin/uv +COPY --from=ghcr.io/astral-sh/uv:0.11.7 /uv /bin/uv # We use the system interpreter managed by uv ENV UV_PYTHON_DOWNLOADS=0