From 0da898c9de4d7e39725dc8edae81775b7d2c98b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:43:26 +0000 Subject: [PATCH] chore(deps): update node.js to v22.13.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ada913b..b68dced 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -- compilation -- -FROM node:22.12.0-alpine as build +FROM node:22.13.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.13.0-alpine WORKDIR /usr/src/app RUN apk add --no-cache tini