11 lines
171 B
Docker
11 lines
171 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"]
|