From 78cae61b9098006b20ff66a03430a844c4e8a698 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Fri, 20 Feb 2026 16:42:25 +0200 Subject: [PATCH] fix: Add libva-dev and libglib2.0-dev for webrtc-sys build Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c86a295..714663a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ FROM rust:latest AS rust-build RUN apt-get update && apt-get install -y --no-install-recommends \ git cmake g++ libssl-dev pkg-config protobuf-compiler \ + libva-dev libglib2.0-dev \ && rm -rf /var/lib/apt/lists/* WORKDIR /build RUN git clone --branch EC-compat-changes --depth 1 \