Skip to content

Commit 74348f2

Browse files
MGD-13539(vuln): update node in dockerfile to 26.3.1
1 parent 7a9824f commit 74348f2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:26.3.0-alpine3.22 AS build
1+
FROM node:26.3.1-alpine3.23 AS build
22

33
# Set working directory
44
WORKDIR /app
@@ -7,13 +7,13 @@ WORKDIR /app
77
COPY . .
88

99
# Install dependencies
10-
RUN npm ci
10+
RUN npm ci --ignore-scripts
1111

1212
# Build the application
1313
RUN npm run build
1414

1515
# RUNTIME STAGE
16-
FROM node:26.3.0-alpine3.22
16+
FROM node:26.3.1-alpine3.23
1717

1818
# Set working directory
1919
WORKDIR /app

0 commit comments

Comments
 (0)