MCPs/kontist/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

11 lines
No EOL
452 B
Docker

FROM node:22-slim
RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/tobiasendres-dev/kontist-mcp.git /app/kontist-mcp
WORKDIR /app/kontist-mcp
RUN npm install
RUN npm install -g mcp-proxy@6.5.2
ENV KONTIST_CLIENT_ID=
ENV KONTIST_CLIENT_SECRET=
VOLUME /root/.config/kontist
EXPOSE 8111
CMD ["mcp-proxy", "--port", "8111", "--host", "0.0.0.0", "--", "node", "server.mjs"]