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.relay
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-bookworm-slim AS build
FROM node:26-bookworm-slim AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
Expand All @@ -9,7 +9,7 @@ COPY services ./services
COPY scripts/copy-runtime-assets.mjs ./scripts/copy-runtime-assets.mjs
RUN npm run build

FROM node:22-bookworm-slim AS runtime
FROM node:26-bookworm-slim AS runtime
ENV NODE_ENV=production EXARCH_RELAY_HOST=0.0.0.0 EXARCH_RELAY_PORT=8787 EXARCH_RELAY_TRUST_PROXY=0
WORKDIR /app
COPY package.json package-lock.json ./
Expand Down