From c661942e9525dc2823f06f5db795097c029eac37 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 20:32:16 +0000 Subject: [PATCH] fix(deps): update node.js to v22.22.3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d55493ed..f3d5133e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG BUILDPLATFORM # -- compilation -- -FROM --platform=$BUILDPLATFORM node:22.22.2-alpine AS build +FROM --platform=$BUILDPLATFORM node:22.22.3-alpine AS build WORKDIR /app # install dependencies @@ -18,7 +18,7 @@ COPY . . RUN npm run build # -- execution -- -FROM node:22.22.2-alpine +FROM node:22.22.3-alpine WORKDIR /app RUN apk add --no-cache tini