We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b2b06 commit 2d96be0Copy full SHA for 2d96be0
cvo_gpu/Dockerfile
@@ -18,8 +18,9 @@ RUN apt-get update \
18
&& dpkg-reconfigure --frontend=noninteractive locales \
19
&& update-locale LANG=en_US.UTF-8
20
21
-# patch fix: for nvidia deprecated key
22
-RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
+# remove deprecated nvidia key
+RUN apt install -y wget && wget -qO - https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub | apt-key add - \
23
+ && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
24
25
RUN apt update && apt-get install -y software-properties-common && \
26
add-apt-repository ppa:ubuntu-toolchain-r/test && \
0 commit comments