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 Dockerfile.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN CGO_ENABLED=1 GOOS=linux \
# ══════════════════════════════════════════════════════════════════════════════
# Stage 2 — Node.js / pnpm (Next.js Build)
# ══════════════════════════════════════════════════════════════════════════════
FROM node:25-alpine AS node-builder
FROM node:26-alpine AS node-builder

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN mkdir -p /app/tmp && go build -o /app/tmp/aether-server ./server/
# ══════════════════════════════════════════════════════════════════════════════
# Stage 2 — Node.js / pnpm
# ══════════════════════════════════════════════════════════════════════════════
FROM node:25-alpine AS node-builder
FROM node:26-alpine AS node-builder

WORKDIR /app/app

Expand All @@ -32,7 +32,7 @@ RUN pnpm install --ignore-scripts
# ══════════════════════════════════════════════════════════════════════════════
# Stage final
# ══════════════════════════════════════════════════════════════════════════════
FROM node:25-alpine
FROM node:26-alpine

RUN apk add --no-cache \
ca-certificates \
Expand Down
Loading