From d3cb434b9c41dd68480d0b8453def8b5868c87c7 Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Tue, 14 Jul 2026 15:45:35 +0200 Subject: [PATCH] fix(build): pin python full image to node 24 node:26 didn't match node 24 used everywhere else in the repo. Signed-off-by: mesutoezdil --- python/Dockerfile.full | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/Dockerfile.full b/python/Dockerfile.full index 8078f1873..70841c226 100644 --- a/python/Dockerfile.full +++ b/python/Dockerfile.full @@ -10,10 +10,10 @@ ARG UV_VERSION=0.11.15 FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv-bin ### STAGE 2: base os + sandbox runtime -# node:20-bookworm-slim is a digest-pinnable debian-bookworm base that ships Node 20 (the +# node:24-bookworm-slim is a digest-pinnable debian-bookworm base that ships Node 24 (the # sandbox-runtime requires node >= 20; debian's own nodejs package is still on 18). -# Digest = multi-arch index resolved via `docker buildx imagetools inspect node:20-bookworm-slim`. -FROM node:26-bookworm-slim@sha256:e999d087492c7227c85adc70574cf9d3cce774c3e6d7b8dfe473ee6b142c8f2c AS python-os +# Digest = multi-arch index resolved via `docker buildx imagetools inspect node:24-bookworm-slim`. +FROM node:24-bookworm-slim@sha256:6f7b03f7c2c8e2e784dcf9295400527b9b1270fd37b7e9a7285cf83b6951452d AS python-os ARG TOOLS_PYTHON_VERSION=3.13 ENV LANG=C.UTF-8