From 9855a0ad0f6c1e5b0c72f26d16a171817ec8b17c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2026 19:34:48 +0000 Subject: [PATCH] build(deps): bump the images group across 2 directories with 1 update Bumps the images group with 1 update in the /PortfolioCMS.Admin directory: node. Bumps the images group with 1 update in the /PortfolioCMS.Server directory: node. Updates `node` from 22-slim to 26-slim Updates `node` from 22-slim to 26-slim Updates `node` from 22-slim to 26-slim Updates `node` from 22-slim to 26-slim --- updated-dependencies: - dependency-name: node dependency-version: 26-slim dependency-type: direct:production dependency-group: images - dependency-name: node dependency-version: 26-slim dependency-type: direct:production dependency-group: images ... Signed-off-by: dependabot[bot] --- PortfolioCMS.Admin/Dockerfile | 2 +- PortfolioCMS.Server/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PortfolioCMS.Admin/Dockerfile b/PortfolioCMS.Admin/Dockerfile index e401e81..310a1b9 100644 --- a/PortfolioCMS.Admin/Dockerfile +++ b/PortfolioCMS.Admin/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /app EXPOSE 8080 -FROM node:22-slim AS client +FROM node:26-slim AS client WORKDIR /src/portfoliocms.admin.client COPY ["portfoliocms.admin.client/package.json", "portfoliocms.admin.client/package-lock.json", "./"] RUN npm ci diff --git a/PortfolioCMS.Server/Dockerfile b/PortfolioCMS.Server/Dockerfile index 72b51b2..a5efb51 100644 --- a/PortfolioCMS.Server/Dockerfile +++ b/PortfolioCMS.Server/Dockerfile @@ -10,7 +10,7 @@ EXPOSE 8080 # The SPA is built here instead of through the .esproj reference, for two reasons: npm ci gets its # own layer, so a source-only change reuses the cached node_modules, and the .NET stage then needs # no node at all. -FROM node:22-slim AS client +FROM node:26-slim AS client WORKDIR /src/portfoliocms.client COPY ["portfoliocms.client/package.json", "portfoliocms.client/package-lock.json", "./"] RUN npm ci