rd-blender-docker
rd-blender-docker copied to clipboard
apt update failed, because of "CUDA Linux Repository Key Rotation"
# apt update
W: GPG error: https://developer.download.nvidia.cn/compute/cuda/repos/ubuntu1804/x86_64 InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A4B469963BF863CC
E: The repository 'https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease' is no longer signed.
The command '/bin/sh -c apt-get update' returned a non-zero code: 100
Refrence: https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212772 https://github.com/NVIDIA/nvidia-container-toolkit/issues/258
RUN rm /etc/apt/sources.list.d/cuda.list
RUN rm /etc/apt/sources.list.d/nvidia-ml.list
RUN apt-key del 7fa2af80 \
&& wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb \
&& dpkg -i cuda-keyring_1.0-1_all.deb
RUN apt-get update
fix the issue
Same problem.
I think bumping ubuntu to 20.04 or 22.04 should fix also.