15 lines
247 B
Docker
15 lines
247 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY windmill_mcp.py .
|
|
|
|
ENV MCP_TRANSPORT=sse
|
|
ENV MCP_HOST=0.0.0.0
|
|
ENV MCP_PORT=8001
|
|
|
|
CMD ["python", "windmill_mcp.py"]
|