Skip to content
Closed
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
4 changes: 2 additions & 2 deletions deployments/Dockerfile.ui
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Dev stage: Vite dev server with hot reload ----
FROM node:22-alpine AS dev
FROM node:25-alpine AS dev

WORKDIR /app

Expand All @@ -11,7 +11,7 @@ COPY web/ .
CMD ["npx", "vite", "--host"]

# ---- Production stage: build + Express server ----
FROM node:22-alpine AS prod
FROM node:25-alpine AS prod

WORKDIR /app

Expand Down
Loading