11 lines
No EOL
468 B
Docker
11 lines
No EOL
468 B
Docker
FROM node:22-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates && 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"] |