From e114e2e5bed7053d9ba5160c371a07eb486864ee Mon Sep 17 00:00:00 2001 From: "Tobias J. Endres" Date: Tue, 23 Jun 2026 15:49:59 +0200 Subject: [PATCH] fix: add ca-certificates to kontist Dockerfile (git clone needs HTTPS certs) --- kontist/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kontist/Dockerfile b/kontist/Dockerfile index 2194187..ac7fa3e 100644 --- a/kontist/Dockerfile +++ b/kontist/Dockerfile @@ -1,5 +1,5 @@ FROM node:22-slim -RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* +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