Using testing repo for hwaccel dependencies (#4368)

This commit is contained in:
Nicolas Mowen 2022-11-19 06:21:43 -07:00 committed by GitHub
parent 53045de1c2
commit a46c37018f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,9 @@ RUN apt-get -qq update \
fi \ fi \
# arch specific packages # arch specific packages
&& if [ "${TARGETARCH}" = "amd64" ]; then \ && if [ "${TARGETARCH}" = "amd64" ]; then \
apt-get -qq install --no-install-recommends --no-install-suggests -y \ echo 'deb http://deb.debian.org/debian testing main non-free' >> /etc/apt/sources.list.d/deb.list \
&& apt-get -qq update \
&& apt-get -qq install --no-install-recommends --no-install-suggests -y \
mesa-va-drivers libva-drm2 intel-media-va-driver-non-free i965-va-driver libmfx1; \ mesa-va-drivers libva-drm2 intel-media-va-driver-non-free i965-va-driver libmfx1; \
fi \ fi \
&& if [ "${TARGETARCH}" = "arm64" ]; then \ && if [ "${TARGETARCH}" = "arm64" ]; then \