From 61efd23a9ed82666bde29fee38c8e91ff8a944e8 Mon Sep 17 00:00:00 2001 From: "kritik.b" Date: Thu, 16 Apr 2026 17:42:04 +0530 Subject: [PATCH] fix(docker): update Node.js version in Dockerfile - Change base image from node:20-alpine to node:22-alpine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77468f643..8de650c7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG BUILDPLATFORM ARG TARGETPLATFORM -FROM --platform=$BUILDPLATFORM node:20-alpine AS builder +FROM --platform=$BUILDPLATFORM node:22-alpine AS builder WORKDIR /app