diff --git a/Dockerfile b/Dockerfile index f95f38f2..ea629722 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Stage 1 - Build the React client v2 -FROM --platform=linux/amd64 node:20.10-alpine AS clientv2-build +FROM --platform=linux/amd64 node:23.4-alpine AS clientv2-build WORKDIR /opt/app/web-console-v2 COPY ./web-console-v2/package.json . RUN npm install --legacy-peer-deps @@ -8,7 +8,7 @@ COPY ./web-console-v2/ . RUN npm run build # Stage 2 - Run the Node.js server -FROM --platform=linux/amd64 node:20.10-alpine AS server-build +FROM --platform=linux/amd64 node:23.4-alpine AS server-build WORKDIR /opt/app/server COPY ./package.json . RUN npm install