MCPs/semaphore/Dockerfile
Tobias J. Endres 22b81b2478
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: update fleet to tested MCPs + add 10 new MCPs with Dockerfiles + Woodpecker CI
2026-06-23 15:09:54 +02:00

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