File size: 259 Bytes
974d10d
 
 
76f90da
974d10d
 
76f90da
 
69f53cb
1
2
3
4
5
6
7
8
9
10
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"]