docker: Add VAAPI to arm64

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2022-07-20 09:03:43 -04:00 committed by Blake Blackshear
parent 2d5d3bdaf4
commit 5577ef081f

View File

@ -89,6 +89,10 @@ RUN apt-get -qq update \
apt-get -qq install --no-install-recommends --no-install-suggests -y \ apt-get -qq install --no-install-recommends --no-install-suggests -y \
mesa-va-drivers intel-media-va-driver-non-free; \ mesa-va-drivers intel-media-va-driver-non-free; \
fi \ fi \
&& if [ "${TARGETARCH}" = "arm64" ]; then \
apt-get -qq install --no-install-recommends --no-install-suggests -y \
libva-drm2 mesa-va-drivers; \
fi \
# not sure why 32bit arm requires all these # not sure why 32bit arm requires all these
&& if [ "${TARGETARCH}" = "arm" ]; then \ && if [ "${TARGETARCH}" = "arm" ]; then \
apt-get -qq install --no-install-recommends --no-install-suggests -y \ apt-get -qq install --no-install-recommends --no-install-suggests -y \