MCPs/semaphore/Dockerfile

12 lines
171 B
Text
Raw Normal View History

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"]