From 5fd122dc3af3faefda4b34028375a34e908d4340 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 19 Feb 2025 19:30:09 +0000 Subject: [PATCH] fix(deps): update node.js to v22.14.0 --- client/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 32be974..ac4d350 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,6 +1,6 @@ # check=skip=SecretsUsedInArgOrEnv -FROM node:22.12.0-alpine AS build +FROM node:22.14.0-alpine AS build WORKDIR /app COPY ./package*.json ./ @@ -13,7 +13,7 @@ COPY ./common ./common COPY ./client ./client RUN npm run build -FROM node:22.12.0-alpine AS deploy +FROM node:22.14.0-alpine AS deploy WORKDIR /app RUN apk add --no-cache tini