From 43e68c7a0f6dc5c2f484adca3f23dc3445c4df6d Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Thu, 13 Mar 2025 14:56:24 -0500 Subject: [PATCH] fix: Upgrade node base image to Debian 12 bookworm (#32652) (cherry picked from commit 2f6f5c67785b32a52030b06b984326c98c09e1bd) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eaa36daa734..f6a21d2a014 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ ARG BUILD_TRANSLATIONS="false" ###################################################################### # superset-node-ci used as a base for building frontend assets and CI ###################################################################### -FROM --platform=${BUILDPLATFORM} node:20-bullseye-slim AS superset-node-ci +FROM --platform=${BUILDPLATFORM} node:20-bookworm-slim AS superset-node-ci ARG BUILD_TRANSLATIONS ENV BUILD_TRANSLATIONS=${BUILD_TRANSLATIONS} ARG DEV_MODE="false" # Skip frontend build in dev mode