Skip to content
Merged
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:20-alpine AS dashboard
FROM node:24-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:20-alpine AS dashboard
FROM --platform=linux/amd64 node:24-alpine AS dashboard
WORKDIR /src
RUN apk upgrade --no-cache
# Install deps first for warm cache.
Expand Down
Loading