This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 43e68c7a0f6dc5c2f484adca3f23dc3445c4df6d Author: Dolph Mathews <[email protected]> AuthorDate: Thu Mar 13 14:56:24 2025 -0500 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 eaa36daa73..f6a21d2a01 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
