From a1dd063ff20943d2422136b155f64b2abaecdec5 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 14 Mar 2025 08:00:32 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-MUSL-8720638 - https://snyk.io/vuln/SNYK-ALPINE320-MUSL-8720638 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8690013 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8710359 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 14c1c22064..f51759e941 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################################ # Build stage ############################################################ -FROM node:20.18.2-alpine3.20 AS build +FROM node:20.19.0-alpine3.20 AS build RUN apk --no-cache add \ build-base \ @@ -28,7 +28,7 @@ RUN npm ci --omit=dev --ignore-scripts \ ############################################################ # Release stage ############################################################ -FROM node:20.18.2-alpine3.20 AS release +FROM node:20.19.0-alpine3.20 AS release VOLUME /parse-server/cloud /parse-server/config