Dockerfile 351 B

12345678910111213141516
  1. FROM python:3.13-slim
  2. RUN apt-get update && apt-get install -y --no-install-recommends \
  3. nodejs npm \
  4. && rm -rf /var/lib/apt/lists/*
  5. RUN pip install --no-cache-dir mcp-proxy
  6. RUN npm install -g @modelcontextprotocol/server-filesystem
  7. COPY entrypoint.sh /entrypoint.sh
  8. RUN chmod +x /entrypoint.sh
  9. EXPOSE 3100
  10. ENTRYPOINT ["/entrypoint.sh"]