FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
#Install Graphics runtime package
RUN apt update && \
apt install --no-install-recommends -q -y gnupg wget software-properties-common && \
wget https://repositories.intel.com/graphics/intel-graphics.key && \
apt-key add intel-graphics.key && \
apt-add-repository 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' && \
apt update && \
apt install --no-install-recommends -q -y libmfxgen1 intel-media-va-driver-non-free libmfx1 libva-dev libva-drm2 vainfo && \
apt install -y cmake build-essential pkg-config
|