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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---- Base ----
# Use a slim image as the base for consistency and smaller size than the full node image.
FROM node:23-slim AS base
FROM node:24-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="${PNPM_HOME}:$PATH"

Expand Down Expand Up @@ -47,7 +47,7 @@ RUN pnpm prune --prod --ignore-scripts

# ---- Production ----
# Final, size-optimized production image.
FROM node:23-slim AS production
FROM node:24-slim AS production
ENV NODE_ENV="production"
# Sets the workdir, usually created as root
WORKDIR /app
Expand Down