From 114cbf89c5fad565496410aec0e78bfd8d63aff5 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 5 Dec 2025 08:32:22 +0100 Subject: [PATCH] fix(docker): update Node.js version to 24.11.1-alpine Updates the Node.js base image in the Dockerfile to the latest 24.11.1-alpine version for improved performance and security. This change ensures the application runs on a stable and supported version of Node.js. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e8ea87..4580dff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN GOOS=linux GOARCH=amd64 go build \ FROM scratch as export COPY --from=build /build/coverage.txt / -FROM node:24-alpine@sha256:682368d8253e0c3364b803956085c456a612d738bd635926d73fa24db3ce53d7 +FROM node:24.11.1-alpine@sha256:682368d8253e0c3364b803956085c456a612d738bd635926d73fa24db3ce53d7 ENV TZ Europe/Stockholm # Install wgc CLI globally for Cosmo Router composition