From a980f5232438bd735c0ed0ce3d85bff12b8c985e Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 29 Sep 2025 08:44:53 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-10847885 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-10847886 - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-10597997 - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-10597997 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b23f28..ddbf8c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.1.0-alpine AS builder +FROM node:24.9.0-alpine AS builder RUN apk add --no-cache libc6-compat RUN npm i -g pnpm@8.2.0 @@ -12,7 +12,7 @@ RUN pnpm install COPY . . RUN npm run build -FROM node:24.1.0-alpine +FROM node:24.9.0-alpine RUN apk add --no-cache libc6-compat RUN npm i -g pnpm@8.2.0 WORKDIR /app