From d03734892d5d0121cc886c5886ed3f8226b6b8c7 Mon Sep 17 00:00:00 2001 From: Finn Date: Mon, 14 Oct 2024 19:07:00 -0700 Subject: [PATCH] Use debian:12 base image because apparently we have crazy runtime deps --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 38d3ad3..f689590 100644 --- a/Containerfile +++ b/Containerfile @@ -5,6 +5,7 @@ COPY . /src WORKDIR /src RUN cargo build --release -FROM scratch +FROM debian:12 +RUN apt-get update && apt-get install -y libssl3 && rm -rf /var/lib/apt/lists COPY --from=build /src/target/release/matrix-meshtastic-bridge /matrix-meshtastic-bridge CMD ["/matrix-meshtastic-bridge"]