From 72e77a34bb17d101b2829976c63435753859e618 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 25 Jun 2026 23:43:09 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-17430980 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-17430983 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-17283033 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-17283035 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-17283034 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1ed6d0c1f..126debd44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # docker build -t ff . # docker run -p 3000:3000 -it ff # Build stage -FROM --platform=$BUILDPLATFORM node:24.15.0-alpine3.23 AS builder +FROM --platform=$BUILDPLATFORM node:24.18.0-alpine3.23 AS builder WORKDIR /gen3 WORKDIR /gen3 @@ -24,7 +24,7 @@ COPY start.sh ./start.sh # ───────────────────────────────────────────── # Production stage -FROM node:24.15.0-alpine3.23 AS runner +FROM node:24.18.0-alpine3.23 AS runner WORKDIR /gen3