From 361366a341a5c5b139faffb99f758a101a600a70 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 13 Oct 2025 08:39:17 +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-13174131 - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-13174132 - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-13174133 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b23f28..23c0ba2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.1.0-alpine AS builder +FROM node:24.10.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.10.0-alpine RUN apk add --no-cache libc6-compat RUN npm i -g pnpm@8.2.0 WORKDIR /app