From 65d32e693f2f1582c986a2913faf64b2097d5717 Mon Sep 17 00:00:00 2001 From: Andrea Manzi Date: Wed, 24 Dec 2025 01:36:14 +0100 Subject: [PATCH] add ca-certificates in mcp-server Dockerfile (#1248) Signed-off-by: Andrea Manzi --- crates/mcp/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/mcp/Dockerfile b/crates/mcp/Dockerfile index 5ec9501c..d9c95e94 100644 --- a/crates/mcp/Dockerfile +++ b/crates/mcp/Dockerfile @@ -12,4 +12,6 @@ WORKDIR /app COPY --from=builder /build/target/release/rustfs-mcp /app/ -ENTRYPOINT ["/app/rustfs-mcp"] \ No newline at end of file +RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates + +ENTRYPOINT ["/app/rustfs-mcp"]