Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| EXPOSE 7860 | |
| # HTTP/streamable transport so any remote MCP client can reach it. | |
| ENV MCP_HTTP=1 MCP_PORT=7860 | |
| CMD ["python", "mcp_server.py"] | |