From cfef03a6e827f9dfaf922393772681c0698cfd52 Mon Sep 17 00:00:00 2001 From: Nicholas Lockhart Date: Thu, 6 Feb 2025 00:03:33 -0600 Subject: [PATCH] Update node and alpine version (#2529) * Update node and alpine version * Update for changes --- ChangeLog.md | 1 + Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index afba0aec0..75e94b20e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -8,6 +8,7 @@ General: - Changed the responds status code of not implemented API from 500 to 501. - Added support for docker image based on Windows Base Image. +- Updated Node and Alpine versions to account for EOL and CVE concerns Blob: diff --git a/Dockerfile b/Dockerfile index 2a6a67713..424990eb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Builder # -FROM node:20-alpine3.17 as builder +FROM node:22-alpine3.21 as builder WORKDIR /opt/azurite @@ -18,7 +18,7 @@ RUN npm run build && \ # Production image # -FROM node:20-alpine3.17 +FROM node:22-alpine3.21 ENV NODE_ENV=production