From 1a70a9e9fd1301295ba6a1a061cde5a9d16bd45d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 07:34:40 +0000 Subject: [PATCH] fix: add Intel VAAPI driver (intel-media-driver) to talk-recording container Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/797873dc-7a28-424f-92d0-8e91bb47f6a0 Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com> --- Containers/talk-recording/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containers/talk-recording/Dockerfile b/Containers/talk-recording/Dockerfile index 86fe1280..90f28dd0 100644 --- a/Containers/talk-recording/Dockerfile +++ b/Containers/talk-recording/Dockerfile @@ -35,6 +35,9 @@ RUN set -ex; \ build-base \ linux-headers \ geckodriver; \ + if [ "$(apk --print-arch)" = "x86_64" ]; then \ + apk add --no-cache intel-media-driver; \ + fi; \ useradd -d /tmp --system recording -u 122; \ # Give root a random password echo "root:$(openssl rand -base64 12)" | chpasswd; \