From b8577e9d465ae8bdc1c5e723375fe1448ac04b64 Mon Sep 17 00:00:00 2001 From: log101 Date: Sat, 1 Mar 2025 13:39:19 +0300 Subject: [PATCH] ci: use node 22 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b5f8d1e..5e285b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILDPLATFORM=linux/amd64 # First stage: build -FROM --platform=${BUILDPLATFORM} node:19-bullseye-slim AS build +FROM --platform=${BUILDPLATFORM} node:22-bullseye-slim AS build WORKDIR /app COPY package*.json ./ RUN npm install