Files
mcp/Dockerfile
2026-02-12 16:47:20 +08:00

21 lines
503 B
Docker

FROM python:3.11-slim
# 避免交互与时区问题
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
# 安装 Python 依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 拷贝代码和相关资源(包括 ref.docx、color.lua 等)
COPY . .
# SSE MCP 服务默认端口
EXPOSE 8080
# 默认以 SSE 模式启动 MCP 服务器,支持远程调用
CMD ["python", "mcp_docx_server.py", "--transport", "sse", "--host", "0.0.0.0", "--port", "8080"]