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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COPY rust-core/crates ./crates
RUN cargo build --release

# Stage 2: Node.js build environment
FROM node:20-slim as node-builder
FROM node:25-slim as node-builder

# Install system dependencies for native modules
RUN apt-get update && apt-get install -y \
Expand All @@ -42,7 +42,7 @@ COPY typescript-mcp/tsconfig.json ./
RUN npm run build

# Stage 3: Runtime environment
FROM node:20-slim as runtime
FROM node:25-slim as runtime

# Install runtime dependencies
RUN apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ COPY rust-core/crates ./crates
RUN cargo build --release

# Stage 2: Node.js build environment (test-optimized)
FROM node:20-slim as node-builder
FROM node:25-slim as node-builder

# Install system dependencies for native modules and testing
RUN apt-get update && apt-get install -y \
Expand Down Expand Up @@ -63,7 +63,7 @@ RUN npm install -g \
pm2

# Stage 3: Runtime environment (test-optimized)
FROM node:20-slim as runtime
FROM node:25-slim as runtime

# Install runtime and testing dependencies
RUN apt-get update && apt-get install -y \
Expand Down