Regarding the docker build issue in master branch it appears that https://repositories.intel.com/gpu/ubuntu is down with an access denied message
#7 4.701 Reading package lists...
#7 5.410 W: GPG error: https://repositories.intel.com/gpu/ubuntu jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 28DA432DAAC8BAEA
#7 5.410 E: The repository 'https://repositories.intel.com/gpu/ubuntu jammy InRelease' is not signed.
#7 ERROR: process "/bin/sh -c apt-get update && apt-get install -y git" did not complete successfully: exit code: 100
This causes this error
5.410 W: GPG error: https://repositories.intel.com/gpu/ubuntu jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 28DA432DAAC8BAEA
5.410 E: The repository 'https://repositories.intel.com/gpu/ubuntu jammy InRelease' is not signed.
------
main-intel.Dockerfile:6
--------------------
5 | ARG LLAMA_SYCL_F16=OFF
6 | >>> RUN apt-get update && \
7 | >>> apt-get install -y git
8 |
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update && apt-get install -y git" did not complete successfully: exit code: 100
Error: buildx failed with: ERROR: failed to solve: process "/bin/sh -c apt-get update && apt-get install -y git" did not complete successfully: exit code: 100
If i understand to access this, you need to have the latest public key which intel says in https://dgpu-docs.intel.com/driver/installation.html#repository-public-key-used-for-package-and-repository-signing to be:
wget -qO - https://repositories.intel.com/gpu/intel-graphics.key |
sudo gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics.gpg
So the question is if the public key we are using is more current?
Regarding the docker build issue in master branch it appears that https://repositories.intel.com/gpu/ubuntu is down with an access denied message
This causes this error
If i understand to access this, you need to have the latest public key which intel says in https://dgpu-docs.intel.com/driver/installation.html#repository-public-key-used-for-package-and-repository-signing to be:
So the question is if the public key we are using is more current?