Skip to content

Commit f5540b4

Browse files
authored
Add ca-certificates to docker-8000 (#145)
1 parent 41ca43d commit f5540b4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elasticsearch-core-mcp-server"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
edition = "2024"
55
authors = ["Elastic.co"]
66
license-file = "LICENSE"

Dockerfile-8000

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ RUN cargo build --release
2626

2727
FROM debian:stable-slim
2828

29-
RUN apt-get update && apt install -y libssl-dev && apt clean && rm -rf /var/lib/apt/lists/*
29+
RUN <<EOF
30+
apt-get clean
31+
apt-get update
32+
apt-get install --yes libssl-dev ca-certificates
33+
apt-get clean
34+
rm -rf /var/lib/apt/lists/*
35+
EOF
3036

3137
COPY --from=builder /app/target/release/elasticsearch-core-mcp-server /usr/local/bin/elasticsearch-core-mcp-server
3238

0 commit comments

Comments
 (0)