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 self-hosting/Dockerfile-selfhosted
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS builder
FROM node:26-slim AS builder

WORKDIR /app

Expand All @@ -23,7 +23,7 @@ RUN pnpm run build
## build everything in the first stage and then
## leverage .dockerignore and 2nd stage to remove files
## from the built image that we don't want included
FROM node:20-slim
FROM node:26-slim

WORKDIR /app

Expand Down
Loading