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