MCPs/portainer/Dockerfile
Tobias J. Endres f0a5899cfe
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: use python:3.12-slim base for Python MCPs (nc-mcp-server needs 3.12+)
2026-06-23 15:37:45 +02:00

6 lines
No EOL
340 B
Docker

FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends nodejs npm && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir "mcp-portainer~=2.42.0" && npm install -g mcp-proxy@6.5.2
ENV PORTAINER_TLS_VERIFY=false
EXPOSE 8110
CMD ["mcp-proxy", "--port", "8110", "--host", "0.0.0.0", "--", "mcp-portainer"]