From 070d80a6faa971ee22b2d83b7f3a2a0e3e599413 Mon Sep 17 00:00:00 2001 From: Cucumberrbob <128094686+Cucumberrbob@users.noreply.github.com> Date: Sat, 7 Jun 2025 13:50:57 +0100 Subject: [PATCH] update node version in dockerfile so angular will build angular 20 requires at least node 22.12 (or 20.19) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7faa75b..fdab022 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1 - Build the frontend -FROM node:18-alpine3.18 AS node-build-env +FROM node:22.16.0-alpine3.22 AS node-build-env ARG TARGETPLATFORM ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} ARG BUILDPLATFORM