From 6a0a6ae210a94d68a06e37c4a56b5fc3047ff119 Mon Sep 17 00:00:00 2001 From: Zoey Date: Mon, 5 Jun 2023 15:30:38 +0200 Subject: [PATCH] add firefox/geckodriver/xvfb Signed-off-by: Zoey --- Containers/talk-recording/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Containers/talk-recording/Dockerfile b/Containers/talk-recording/Dockerfile index d8cc6870790..1d2e69606f1 100644 --- a/Containers/talk-recording/Dockerfile +++ b/Containers/talk-recording/Dockerfile @@ -8,7 +8,9 @@ RUN set -ex; \ ca-certificates \ tzdata \ bash \ + xvfb \ ffmpeg \ + firefox \ libpulse \ bind-tools \ netcat-openbsd \ @@ -16,8 +18,8 @@ RUN set -ex; \ wget \ shadow \ openssl; \ - # xvfb firefox chromium chromium-chromedriver? - # apk add --no-cache geckodriver --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing; \ + # chromium chromium-chromedriver? + apk add --no-cache geckodriver --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing; \ useradd -d /tmp --system recording; \ # Give root a random password echo "root:$(openssl rand -base64 12)" | chpasswd; \