We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dockfile.gpu use nvidia/cuda:9.0-devel base image, the key is invalid in current. Reference https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/.
Solution Update the head string from
FROM nvidia/cuda:9.0-devel ENV LANG=C.UTF-8 RUN apt update && \ apt upgrade -y && \ apt install -y ruby wget git cmake g++ libboost-all-dev \ doxygen graphviz libblas-dev libopenblas-dev \ libz-dev libssl-dev zlib1g-dev libbz2-dev liblzma-dev \ libprotobuf9v5 protobuf-compiler libprotobuf-dev \ python3-dev python3-numpy python3-setuptools \ cython3
To the following:
FROM nvidia/cuda:9.0-devel ENV LANG=C.UTF-8 RUN rm -rf /etc/apt/sources.list.d/* RUN apt update && apt install gnupg-curl RUN apt-key del 7fa2af80 RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64/7fa2af80.pub RUN echo "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64 /" > /etc/apt/sources.list.d/cuda.list && \ echo "deb https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1604/x86_64 /" > /etc/apt/sources.list.d/nvidia-ml.list RUN apt update && apt upgrade -y && apt install -y ruby wget git cmake g++ libboost-all-dev \ doxygen graphviz libblas-dev libopenblas-dev \ libz-dev libssl-dev zlib1g-dev libbz2-dev liblzma-dev \ libprotobuf9v5 protobuf-compiler libprotobuf-dev \ python3-dev python3-numpy python3-setuptools \ cython3
After modification, the docker file for gpu can be build successfully.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dockfile.gpu use nvidia/cuda:9.0-devel base image, the key is invalid in current. Reference https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/.
Solution
Update the head string from
To the following:
After modification, the docker file for gpu can be build successfully.
The text was updated successfully, but these errors were encountered: