From 4aa5b87b2395629d17f8d2e37140bf603a5b7fec Mon Sep 17 00:00:00 2001 From: Guilherme Gazzo Date: Wed, 9 Sep 2026 15:15:31 -0300 Subject: [PATCH] chore: bump Debian base image from bullseye to bookworm Debian 11 (bullseye) left Debian LTS security support on 2026-08-31, so the published Debian image no longer receives OS security updates. Bookworm is supported until 2028-06-30 and ships GCC 12 / glibc 2.36, matching the fully C++20-capable toolchain the alpine image already has. Node version is intentionally unchanged. --- apps/meteor/.docker/Dockerfile.debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meteor/.docker/Dockerfile.debian b/apps/meteor/.docker/Dockerfile.debian index 597f25e8f33de..d6668c1242d4c 100644 --- a/apps/meteor/.docker/Dockerfile.debian +++ b/apps/meteor/.docker/Dockerfile.debian @@ -2,7 +2,7 @@ ARG DENO_VERSION="1.37.1" FROM denoland/deno:bin-${DENO_VERSION} as deno -FROM node:24.15.0-bullseye-slim +FROM node:24.15.0-bookworm-slim LABEL maintainer="buildmaster@rocket.chat"