Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PortfolioCMS.Admin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion PortfolioCMS.Server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading