From 22422182c6c32205e9f47733d8b01c8086bb90f6 Mon Sep 17 00:00:00 2001 From: Parse Platform <90459499+parseplatformorg@users.noreply.github.com> Date: Mon, 7 Oct 2024 03:40:30 +0200 Subject: [PATCH] refactor: Security upgrade node from 20.14.0-alpine3.20 to 20.17.0-alpine3.20 (#2593) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f74301db9c..1570cf871f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################################ # Build stage ############################################################ -FROM node:20.14.0-alpine3.20 AS build +FROM node:20.17.0-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.14.0-alpine3.20 AS release +FROM node:20.17.0-alpine3.20 AS release WORKDIR /src # Copy production node_modules