5 lines
No EOL
154 B
Docker
5 lines
No EOL
154 B
Docker
FROM python:3.12-slim
|
|
RUN pip install --no-cache-dir semaphore-mcp
|
|
ENV MCP_TRANSPORT=http MCP_HOST=0.0.0.0 MCP_PORT=8103
|
|
EXPOSE 8103
|
|
CMD ["semaphore-mcp"] |