From ab384db9c0bfab08cf0197d712a8c60c490e0df6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 23:01:59 +0000 Subject: [PATCH] fix(deps): update node.js to v22.21.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46264ca5..e95d2006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -- compilation -- -FROM node:22.16.0-alpine AS build +FROM node:22.21.1-alpine AS build WORKDIR /app # install dependencies @@ -16,7 +16,7 @@ COPY . . RUN npm run build # -- execution -- -FROM node:22.16.0-alpine +FROM node:22.21.1-alpine WORKDIR /app RUN apk add --no-cache tini