From 008f7cdc08f91b6436661709557648a92eee6f28 Mon Sep 17 00:00:00 2001 From: Finn Date: Mon, 14 Oct 2024 19:30:36 -0700 Subject: [PATCH] Install ca-certificates --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index f689590..9fad42e 100644 --- a/Containerfile +++ b/Containerfile @@ -6,6 +6,6 @@ WORKDIR /src RUN cargo build --release FROM debian:12 -RUN apt-get update && apt-get install -y libssl3 && rm -rf /var/lib/apt/lists +RUN apt-get update && apt-get install -y libssl3 ca-certificates && rm -rf /var/lib/apt/lists COPY --from=build /src/target/release/matrix-meshtastic-bridge /matrix-meshtastic-bridge CMD ["/matrix-meshtastic-bridge"]