ci: preinstall ffmpeg for live media checks

This commit is contained in:
Peter Steinberger
2026-04-29 03:48:23 +01:00
parent 1f055d23fd
commit ba0f2e948f
5 changed files with 227 additions and 77 deletions

View File

@@ -0,0 +1,16 @@
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
ffmpeg \
git \
openssh-client \
unzip \
xz-utils \
zstd \
&& rm -rf /var/lib/apt/lists/*