Skip to content

Commit b1ce5f7

Browse files
committed
chore(deps): update node docker tag to v26
1 parent 1d91b00 commit b1ce5f7

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

cloudformation/scenarios/minute/docker/frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:23-alpine AS base
1+
FROM node:26-alpine AS base
22

33
# Install dependencies only when needed
44
FROM base AS deps

cloudformation/scenarios/planx/docker/api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PlanX API with demo auth overlay
22
# Multi-stage build from the PlanX monorepo
3-
FROM node:24.14-alpine AS build
3+
FROM node:26.1-alpine AS build
44

55
RUN corepack enable && corepack prepare pnpm@latest --activate
66

@@ -22,7 +22,7 @@ RUN cd api.planx.uk && pnpm build
2222
COPY overlays/demo-auth.js /app/api.planx.uk/dist/demo-auth.js
2323

2424
# Production stage
25-
FROM node:24.14-alpine AS production
25+
FROM node:26.1-alpine AS production
2626

2727
RUN corepack enable && corepack prepare pnpm@latest --activate
2828

cloudformation/scenarios/planx/docker/editor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PlanX Editor - pre-built SPA served by nginx
22
# Multi-stage build from the PlanX monorepo
3-
FROM node:24.14-alpine AS build
3+
FROM node:26.1-alpine AS build
44

55
RUN corepack enable && corepack prepare pnpm@latest --activate
66

cloudformation/scenarios/planx/docker/sharedb/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PlanX ShareDB — real-time collaborative editing via WebSocket
22
# Multi-stage build from the PlanX monorepo
3-
FROM node:24.14-alpine AS build
3+
FROM node:26.1-alpine AS build
44

55
RUN corepack enable && corepack prepare pnpm@latest --activate
66

@@ -18,7 +18,7 @@ RUN cd sharedb.planx.uk && (pnpm install --frozen-lockfile || pnpm install)
1818
# ShareDB has no build step — server.js runs directly from source.
1919

2020
# Production stage
21-
FROM node:24.14-alpine AS production
21+
FROM node:26.1-alpine AS production
2222

2323
WORKDIR /app
2424

0 commit comments

Comments
 (0)