Closed dvrogozh closed 4 years ago
We did not download repo key as per instruction https://dgpu-docs.intel.com/installation-guides/ubuntu/ubuntu-focal.html:
sudo apt-get install -y gpg-agent wget
wget -qO - https://repositories.intel.com/graphics/intel-graphics.key |
sudo apt-key add -
sudo apt-add-repository \
'deb https://repositories.intel.com/graphics/ubuntu focal main'
Doing this would fix the issue. The problem is however that this won't work for the focal-devel repo channel. Which should be configured in a different way:
cat << EOF | sudo tee /etc/apt/sources.list.d/intel-graphics.list
deb [trusted=yes arch=amd64] https://repositories.intel.com/graphics/ubuntu focal-devel main
EOF
We can write something like that to cover both cases, but honestly it would be better if instructions have been aligned across stable and devel repo channels:
wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | apt-key add -
echo "deb [trusted=yes arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main" > /etc/apt/sources.list.d/intel-graphics.list
# or
echo "deb [trusted=yes arch=amd64] https://repositories.intel.com/graphics/ubuntu focal-devel main" > /etc/apt/sources.list.d/intel-graphics.list
https://github.com/intel/media-delivery/blob/dda4d5d50149c24f1cc69660f602f69002160a5f/Dockerfile.ubuntu#L36