Skip to content
This repository was archived by the owner on Apr 27, 2025. It is now read-only.

[Snyk] Security upgrade node from 20.17.0-alpine3.20 to 20.19.1-alpine3.20 #931

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20 as dependencies
FROM node:20.19.1-alpine3.20 as dependencies
WORKDIR /app

# Install Python for node-gyp
Expand All @@ -8,7 +8,7 @@ COPY package*.json ./
RUN npm ci

# Build Stage
FROM node:20.17.0-alpine3.20 as build
FROM node:20.19.1-alpine3.20 as build
WORKDIR /app

# Arguments passed from docker-compose.yml / workflow
Expand All @@ -28,7 +28,7 @@ RUN npx nx build frontend --prod --skip-nx-cache \
&& npm prune --production

# Production Stage
FROM node:20.17.0-alpine3.20 as production
FROM node:20.19.1-alpine3.20 as production
WORKDIR /app

COPY --from=build /app/dist/apps/frontend ./frontend
Expand Down