VNC-151 Add Intel Media Driver (non-free) for x86_64 to Ubuntu Noble Dockerfile for video acceleration

This commit is contained in:
El 2025-12-01 00:45:35 +00:00
parent e032c76515
commit 2b16f695ee
No known key found for this signature in database
GPG Key ID: 205388FEB607950A

View File

@ -16,6 +16,11 @@ RUN apt-get update && apt-get -y install ninja-build cmake nasm git libgnutls28-
RUN apt-get update && apt-get -y install libpng-dev libtiff-dev libgif-dev libavcodec-dev libssl-dev libxrandr-dev \
libxcursor-dev libavformat-dev libswscale-dev libva-dev
# x86_64 specific operations
RUN if [ "$(arch)" = "x86_64" ]; then \
apt-get update && apt-get install -y intel-media-va-driver-non-free; \
fi
ENV SCRIPTS_DIR=/tmp/scripts
COPY builder/scripts $SCRIPTS_DIR
RUN $SCRIPTS_DIR/build-deps.sh