update node version in dockerfile so angular will build

angular 20 requires at least node 22.12 (or 20.19)
This commit is contained in:
Cucumberrbob 2025-06-07 13:50:57 +01:00
parent ed354e93a9
commit 070d80a6fa
No known key found for this signature in database
GPG key ID: 2B935C47401C3614

View file

@ -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