From 03b75c3565394e12534a2ab694182c3bbe2e0f84 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 23:05:46 +0000 Subject: [PATCH] chore(deps): update node.js to v22.14.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ada913b..a52cd4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -- compilation -- -FROM node:22.12.0-alpine as build +FROM node:22.14.0-alpine as build WORKDIR /usr/src/app # install dependencies @@ -11,7 +11,7 @@ COPY . . RUN npm run build # -- execution -- -FROM node:22.12.0-alpine +FROM node:22.14.0-alpine WORKDIR /usr/src/app RUN apk add --no-cache tini