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,5 +1,5 @@
# ---- build stage: compile native deps (better-sqlite3) ----
FROM node:24-trixie-slim AS build
FROM node:25-trixie-slim AS build
WORKDIR /app

# Toolchain needed by node-gyp to build better-sqlite3
Expand All @@ -11,7 +11,7 @@ COPY package.json package-lock.json ./
RUN npm ci --omit=dev

# ---- runtime stage: slim image with prebuilt node_modules ----
FROM node:24-trixie-slim AS runtime
FROM node:25-trixie-slim AS runtime
WORKDIR /app

ENV NODE_ENV=production
Expand Down