From 4c0bff81703d6bfebd02003573d3062ea1b0b9ef Mon Sep 17 00:00:00 2001 From: Nando Vieira Date: Fri, 29 May 2026 09:59:45 -0700 Subject: [PATCH] Add missing runtime libraries to Docker image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f4d34ce8c1..7e1d7de43b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM rust:latest RUN rustup target add wasm32v1-none RUN apt-get update && \ - apt-get install -y --no-install-recommends libudev1 libssl3 && \ + apt-get install -y --no-install-recommends ca-certificates libdbus-1-3 libssl3 libudev1 && \ rm -rf /var/lib/apt/lists/* ARG TARGETARCH