2026-06-21 18:00:58 +02:00
|
|
|
FROM node:22-slim
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
|
python3 python3-pip python3-venv \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2026-06-21 18:11:15 +02:00
|
|
|
RUN pip3 install --no-cache-dir --break-system-packages portainer-mcp && \
|
2026-06-21 18:00:58 +02:00
|
|
|
npm install -g mcp-proxy@6.5.2
|
|
|
|
|
|
|
|
|
|
ENV PORTAINER_VERIFY_SSL=false
|
|
|
|
|
|
|
|
|
|
EXPOSE 8110
|
|
|
|
|
|
|
|
|
|
CMD ["mcp-proxy", "--port", "8110", "--host", "0.0.0.0", "--", "portainer-mcp"]
|