Skip to content
Closed
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 server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG VERSION=0.0.0-dev
# ── Stage 1: build the React dashboard ─────────────────────────────────────
# Output lands inside the Go embed.FS root (internal/httpapi/dashboard/dist)
# so the Go build picks it up automatically.
FROM node:24-alpine AS dashboard
FROM node:26-alpine AS dashboard
WORKDIR /src
RUN apk upgrade --no-cache
# Install deps first for warm cache.
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
ARG VERSION=0.0.0-dev

# ── Stage 0: build the React dashboard ─────────────────────────────────────
FROM --platform=linux/amd64 node:24-alpine AS dashboard
FROM --platform=linux/amd64 node:26-alpine AS dashboard
WORKDIR /src
RUN apk upgrade --no-cache
# Install deps first for warm cache.
Expand Down