From 853f724cf90127d60097eb6f31c5396a73f7e3e2 Mon Sep 17 00:00:00 2001 From: Nithin Paul Date: Thu, 2 Oct 2025 06:03:56 -0600 Subject: [PATCH] Align Docker Node to 22 (#566) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e99e728..b2db026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine as builder +FROM node:22-alpine as builder RUN apk add --no-cache git curl WORKDIR /builder @@ -20,7 +20,7 @@ COPY . . RUN yarn build # Create image by copying build artifacts -FROM node:20-alpine as runner +FROM node:22-alpine as runner # Add curl for HEALTHCHECK RUN apk add --no-cache curl