From ac9b962af1f10a8845065c06ca9f6de383abf4d2 Mon Sep 17 00:00:00 2001 From: IK Renovate Bot Date: Sun, 15 Jun 2025 04:25:53 +0000 Subject: [PATCH] chore(deps): update node.js to v22 (node/bookworm-build-container/dockerfile) --- node/bookworm-build-container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/bookworm-build-container/Dockerfile b/node/bookworm-build-container/Dockerfile index afb59d70..cb2ce0ff 100644 --- a/node/bookworm-build-container/Dockerfile +++ b/node/bookworm-build-container/Dockerfile @@ -2,7 +2,7 @@ # notes from https://snyk.io/blog/10-best-practices-to-containerize-nodejs-web-applications-with-docker/ # --------------> The build image -FROM node:20.19.2-bookworm-slim AS build +FROM node:22.16.0-bookworm-slim AS build RUN apt-get update && apt-get install -y --no-install-recommends dumb-init ARG APP_VERSION @@ -35,7 +35,7 @@ COPY package*.json ./ RUN --mount=type=secret,mode=0644,id=npmrc,target=/usr/src/app/.npmrc npm ci --only=production # --------------> The production image__ -FROM node:20.19.2-bookworm-slim AS production +FROM node:22.16.0-bookworm-slim AS production ENV APP_VERSION=$APP_VERSION ENV APP_USER 999