From e206e7c71bace5d86a9c307e411a3f3fe638548d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 21:13:16 +0000 Subject: [PATCH] Update Node.js to v24 --- pkg/container/templates/npx.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/container/templates/npx.tmpl b/pkg/container/templates/npx.tmpl index 8c460a900..e10a0686d 100644 --- a/pkg/container/templates/npx.tmpl +++ b/pkg/container/templates/npx.tmpl @@ -1,4 +1,4 @@ -FROM node:22-alpine AS builder +FROM node:24-alpine AS builder {{if .CACertContent}} # Add custom CA certificate BEFORE any network operations @@ -46,7 +46,7 @@ RUN npm install --save {{.MCPPackage}} {{end}} # Final stage - runtime image with pre-installed packages -FROM node:22-alpine +FROM node:24-alpine {{if .CACertContent}} # Add custom CA certificate for runtime