From a0ae173309aeee0af0c60e22018c6f22cbca1f4d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 27 Feb 2026 19:51:11 -0500 Subject: [PATCH] Dockerfile: add missing build/runtime dependencies (#7546) Signed-off-by: Dan Prince --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5500caf039..c0f78860cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,9 +9,11 @@ FROM rust:1.82-bookworm AS builder RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential \ + cmake \ pkg-config \ libssl-dev \ libdbus-1-dev \ + libclang-dev \ protobuf-compiler \ libprotobuf-dev \ ca-certificates \ @@ -40,6 +42,7 @@ RUN apt-get update && \ ca-certificates \ libssl3 \ libdbus-1-3 \ + libgomp1 \ libxcb1 \ curl \ git \