MCPs/portainer/Dockerfile
Tobias J. Endres de089d1525
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: add build-essential to Python Dockerfiles for source builds
2026-06-23 15:33:12 +02:00

6 lines
No EOL
411 B
Docker

FROM node:22-slim
RUN apt-get update && apt-get install -y --no-install-recommends python3 python3-pip python3-venv python3-dev build-essential && rm -rf /var/lib/apt/lists/*
RUN pip3 install --no-cache-dir --break-system-packages "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"]