Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# Build stage
FROM node:22-alpine AS builder
FROM node:25-alpine AS builder

# Install pnpm
RUN corepack enable && corepack prepare pnpm@9 --activate
Expand All @@ -22,7 +22,7 @@ COPY . .
RUN pnpm run build

# Production stage
FROM node:22-alpine AS production
FROM node:25-alpine AS production

# Install pnpm
RUN corepack enable && corepack prepare pnpm@9 --activate
Expand Down
Loading