@@ -20,6 +20,10 @@ docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t ccr.c
2020docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t nexent/nexent-docs -f make/docs/Dockerfile . --push
2121docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t ccr.ccs.tencentyun.com/nexent-hub/nexent-docs -f make/docs/Dockerfile . --push
2222
23+ # 🔗 build MCP Server for multiple architectures
24+ docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t nexent/nexent-mcp -f make/mcp/Dockerfile . --push
25+ docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t ccr.ccs.tencentyun.com/nexent-hub/nexent-mcp -f make/mcp/Dockerfile . --push
26+
2327# 💻 build Ubuntu Terminal for multiple architectures
2428docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t nexent/nexent-terminal -f make/terminal/Dockerfile . --push
2529docker buildx build --progress=plain --platform linux/amd64,linux/arm64 -t ccr.ccs.tencentyun.com/nexent-hub/nexent-terminal -f make/terminal/Dockerfile . --push
@@ -40,6 +44,9 @@ docker build --progress=plain -t nexent/nexent-web -f make/web/Dockerfile .
4044# 📚 Build documentation image (current architecture only)
4145docker build --progress=plain -t nexent/nexent-docs -f make/docs/Dockerfile .
4246
47+ # 🔗 Build MCP Server image (current architecture only)
48+ docker build --progress=plain -t nexent/nexent-mcp -f make/mcp/Dockerfile .
49+
4350# 💻 Build OpenSSH Server image (current architecture only)
4451docker build --progress=plain -t nexent/nexent-ubuntu-terminal -f make/terminal/Dockerfile .
4552```
@@ -73,6 +80,18 @@ docker builder prune -f && docker system prune -f
7380- Built from ` make/docs/Dockerfile `
7481- Provides project documentation and API reference
7582
83+ #### MCP Server Image (nexent/nexent-mcp)
84+ - Contains MCP (Model Context Protocol) proxy service
85+ - Built from ` make/mcp/Dockerfile `
86+ - Provides MCP server functionality for AI model integration
87+
88+ ##### Pre-installed Tools and Features
89+ - ** Python Environment** : Python 3.10 + pip
90+ - ** MCP Proxy** : mcp-proxy package for protocol handling
91+ - ** Node.js** : Node.js 20.17.0 with npm
92+ - ** Architecture Support** : linux/amd64, linux/arm64
93+ - ** Base Image** : python:3.10-slim
94+
7695#### OpenSSH Server Image (nexent/nexent-ubuntu-terminal)
7796- Ubuntu 24.04-based SSH server container
7897- Built from ` make/terminal/Dockerfile `
@@ -101,6 +120,7 @@ All images include:
101120- ` nexent/nexent-data-process ` - Data processing service
102121- ` nexent/nexent-web ` - Next.js frontend application
103122- ` nexent/nexent-docs ` - Vitepress documentation site
123+ - ` nexent/nexent-mcp ` - MCP server proxy service
104124- ` nexent/nexent-ubuntu-terminal ` - OpenSSH development server container
105125
106126## 📚 Documentation Image Standalone Deployment
0 commit comments