From 4d5a5746a35591fdbbb34f4d4dc6efa61ced99e7 Mon Sep 17 00:00:00 2001 From: Sam & Claude Date: Sun, 21 Jun 2026 12:29:39 +0200 Subject: [PATCH] =?UTF-8?q?fix(docker):=20bump=20Node=2022=20=E2=86=92=202?= =?UTF-8?q?4=20LTS=20in=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #4. Container image now matches the toolchain baseline (Node 24 LTS across the matrix). Digest updated to current node:24-bookworm-slim amd64. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be358ac53..c6bbe4fd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ FROM ghcr.io/astral-sh/uv:0.11.6-python3.13-trixie@sha256:b3c543b6c4f23a5f2df228 # so the produced binary links against glibc 2.36, which runs cleanly on # our Debian 13 (trixie, glibc 2.41) runtime. Bumping to a new Node major # is a one-line ARG change; see #4977. -FROM node:22-bookworm-slim@sha256:7af03b14a13c8cdd38e45058fd957bf00a72bbe17feac43b1c15a689c029c732 AS node_source +FROM node:24-bookworm-slim@sha256:2de8393717595f3920276c49aa42bb7f107ad489beb67900d38926b9ab5d55d9 AS node_source FROM debian:13.4 # Disable Python stdout buffering to ensure logs are printed immediately