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 @@
# ---------- builder stage ----------
FROM node:22.15.1-bookworm-slim AS builder
FROM node:22.19.0-bookworm-slim AS builder

# make a directory inside the container
WORKDIR /app
Expand All @@ -18,7 +18,7 @@ RUN pnpm add -D typescript tsc-alias
COPY . .
RUN pnpm build
# ---------- runner stage ----------
FROM node:22.15.1-bookworm-slim AS runner
FROM node:22.19.0-bookworm-slim AS runner

WORKDIR /app
ENV NODE_ENV=production
Expand Down