Dockerfile.filesystem 217 B

1234
  1. FROM python:3.13-slim
  2. RUN pip install --no-cache-dir mcp-proxy
  3. COPY filesystem_server.py /filesystem_server.py
  4. ENTRYPOINT ["mcp-proxy", "--host", "0.0.0.0", "--port", "3100", "--", "python3", "/filesystem_server.py"]