From 00a0493a0fe3065f91a8d21e97cacc8de5cb0460 Mon Sep 17 00:00:00 2001 From: Harish Kumar Gangula Date: Mon, 16 Dec 2024 17:00:13 +0530 Subject: [PATCH] #I431: vuln fixes --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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