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
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.7
FROM rust:1.94.0-bookworm AS build
FROM rust:1.98.0-bookworm AS build

ARG MDBASE_RS_REPOSITORY=https://github.com/callumalpass/mdbase-rs.git
ARG MDBASE_RS_REVISION
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile.hosted-provider
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.7
FROM rust:1.94.0-bookworm AS build
FROM rust:1.98.0-bookworm AS build

ARG MDBASE_RS_REPOSITORY=https://github.com/callumalpass/mdbase-rs.git
ARG MDBASE_RS_REVISION
Expand Down
4 changes: 2 additions & 2 deletions deploy/docker/Dockerfile.mcp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-bookworm-slim AS build
FROM node:26-bookworm-slim AS build

RUN corepack enable
WORKDIR /app
Expand All @@ -18,7 +18,7 @@ RUN pnpm --filter @mdbase-dev/connect-protocol build \
&& pnpm --filter @mdbase-dev/connect build \
&& pnpm --filter @mdbase/connect-mcp build

FROM node:24-bookworm-slim AS runtime
FROM node:26-bookworm-slim AS runtime

ARG MDBASE_CONNECT_REVISION
ENV NODE_ENV=production \
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile.nats
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nats:2.12.7-alpine
FROM nats:2.14.6-alpine

COPY deploy/nats/nats.conf /etc/nats/mdbase-connect.conf
COPY deploy/nats/start-nats.sh /usr/local/bin/start-mdbase-connect-nats
Expand Down
4 changes: 2 additions & 2 deletions deploy/docker/Dockerfile.server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-bookworm-slim AS build
FROM node:26-bookworm-slim AS build

RUN corepack enable
WORKDIR /app
Expand All @@ -25,7 +25,7 @@ RUN pnpm --filter @mdbase-dev/connect-protocol build \
&& pnpm --filter @mdbase/connect-portal build \
&& pnpm --filter @mdbase/connect-server build

FROM node:24-bookworm-slim AS runtime
FROM node:26-bookworm-slim AS runtime

ARG MDBASE_CONNECT_REVISION
ENV NODE_ENV=production \
Expand Down