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,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM node:23-alpine AS builder
FROM node:24-alpine AS builder

WORKDIR /app

Expand All @@ -20,7 +20,7 @@ RUN npx tsc
RUN npm run build-client


FROM node:23-alpine AS runtime
FROM node:24-alpine AS runtime

WORKDIR /app

Expand Down