Skip to content
Open
Show file tree
Hide file tree
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.server
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ── Build stage ─────────────────────────────────────────────────────────────
FROM node:22-slim AS build
FROM node:26-slim AS build
RUN corepack enable pnpm

WORKDIR /app
Expand All @@ -19,7 +19,7 @@ RUN pnpm --filter @open-managed-agents/server build
RUN pnpm --filter @open-managed-agents/server deploy --prod /oma-server

# ── Runtime stage ───────────────────────────────────────────────────────────
FROM node:22-slim AS runtime
FROM node:26-slim AS runtime

# curl is needed for the HEALTHCHECK below
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.web
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ── Build stage ─────────────────────────────────────────────────────────────
FROM node:22-slim AS build
FROM node:26-slim AS build
RUN corepack enable pnpm

WORKDIR /app
Expand Down
Loading