diff --git a/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_no_rdma b/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_no_rdma index 038d033a36b..cb3eac75bbf 100644 --- a/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_no_rdma +++ b/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_no_rdma @@ -29,6 +29,9 @@ FROM nvidia/cuda:${CUDA_VER}-runtime-ubuntu18.04 ARG UCX_VER ARG UCX_CUDA_VER +# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771 +RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub + RUN apt update RUN apt-get install -y wget RUN cd /tmp && wget https://github.com/openucx/ucx/releases/download/v$UCX_VER/ucx-v$UCX_VER-ubuntu18.04-mofed5-cuda$UCX_CUDA_VER.deb diff --git a/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_rdma b/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_rdma index fea627e30df..1b99fdfd94d 100644 --- a/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_rdma +++ b/docs/additional-functionality/shuffle-docker-examples/Dockerfile.ubuntu_rdma @@ -36,6 +36,8 @@ ARG UCX_CUDA_VER=11 FROM ubuntu:18.04 as rdma_core ARG RDMA_CORE_VERSION +# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771 +RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub RUN apt update && apt install -y dh-make wget build-essential cmake gcc libudev-dev libnl-3-dev libnl-route-3-dev ninja-build pkg-config valgrind python3-dev cython3 python3-docutils pandoc RUN wget https://github.com/linux-rdma/rdma-core/releases/download/v${RDMA_CORE_VERSION}/rdma-core-${RDMA_CORE_VERSION}.tar.gz diff --git a/docs/get-started/Dockerfile.cuda b/docs/get-started/Dockerfile.cuda index abcb36684a8..94c407e4f82 100644 --- a/docs/get-started/Dockerfile.cuda +++ b/docs/get-started/Dockerfile.cuda @@ -17,7 +17,10 @@ FROM nvidia/cuda:11.0-devel-ubuntu18.04 ARG spark_uid=185 -# Install java dependencies +# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771 +RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub + +# Install java dependencies RUN apt-get update && apt-get install -y --no-install-recommends openjdk-8-jdk openjdk-8-jre ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-amd64 ENV PATH $PATH:/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin:/usr/lib/jvm/java-1.8.0-openjdk-amd64/bin diff --git a/jenkins/Dockerfile-blossom.integration.ubuntu b/jenkins/Dockerfile-blossom.integration.ubuntu index b338aae58b2..634253e438c 100644 --- a/jenkins/Dockerfile-blossom.integration.ubuntu +++ b/jenkins/Dockerfile-blossom.integration.ubuntu @@ -29,7 +29,10 @@ ARG UBUNTU_VER=18.04 FROM nvidia/cuda:${CUDA_VER}-runtime-ubuntu${UBUNTU_VER} ARG CUDA_VER ARG CUDF_VER +ARG UBUNTU_VER +# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771 +RUN UB_VER=$(echo ${UBUNTU_VER} | tr -d '.') && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${UB_VER}/x86_64/3bf863cc.pub # Install jdk-8, jdk-11, maven, docker image RUN apt-get update -y && \ apt-get install -y software-properties-common rsync zip unzip diff --git a/jenkins/Dockerfile-blossom.ubuntu b/jenkins/Dockerfile-blossom.ubuntu index 20cc0de04ef..97e53cdd067 100644 --- a/jenkins/Dockerfile-blossom.ubuntu +++ b/jenkins/Dockerfile-blossom.ubuntu @@ -35,6 +35,9 @@ ARG UBUNTU_VER ARG UCX_VER ARG UCX_CUDA_VER +# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771 +RUN UB_VER=$(echo ${UBUNTU_VER} | tr -d '.') && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${UB_VER}/x86_64/3bf863cc.pub + # Install jdk-8, jdk-11, maven, docker image RUN apt-get update -y && \ apt-get install -y software-properties-common rsync