From 4533b00d53a2a8320efc5076089906586ffc7e72 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 1 Feb 2025 16:49:00 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1570cf871f..c131f9aac3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################################ # Build stage ############################################################ -FROM node:20.17.0-alpine3.20 AS build +FROM node:20.18.2-alpine3.20 AS build RUN apk --no-cache add git WORKDIR /src @@ -27,7 +27,7 @@ RUN npm run prepare && npm run build ############################################################ # Release stage ############################################################ -FROM node:20.17.0-alpine3.20 AS release +FROM node:20.18.2-alpine3.20 AS release WORKDIR /src # Copy production node_modules