@Reno 在 抱脸部署 MCP Server 中发帖
介绍
配置
Dockerfile
FROM python:3.11-slim
RUN useradd -ms /bin/bash mcp
WORKDIR /app
RUN apt-get update && \
apt-get install -y curl unzip && \
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
apt-get clean
RUN curl -fsSL https://bun.sh/install | bash
ENV BUN_INSTALL="/root/.bun"
ENV PATH="${BUN_INSTALL}/bin:${PATH}"
RUN pip instal...