Skip to content
Closed
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 mcp-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Transaction Forensics - MCP Server
# Node.js 20 base image for MCP protocol server

FROM node:20-alpine AS build
FROM node:26-alpine AS build

# Set environment variables
ENV NODE_ENV=development
Expand All @@ -25,7 +25,7 @@ COPY src/ ./src/
# Build TypeScript to JavaScript
RUN npm run build

FROM node:20-alpine AS runtime
FROM node:26-alpine AS runtime

ENV NODE_ENV=production \
PORT=3000
Expand Down
2 changes: 1 addition & 1 deletion mcp-server/Dockerfile.rfc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Run:
# docker run -p 3000:3000 --env-file .env.rfc sap-workflow-mining-mcp-rfc

FROM node:20-bookworm-slim
FROM node:26-bookworm-slim

# Set environment variables
ENV NODE_ENV=production \
Expand Down
Loading