Land-Develop-MCP / Dockerfile
razaali10's picture
Upload 11 files
76f90da verified
Raw
History Blame Contribute Delete
259 Bytes
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"]