You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by we...@apache.org on 2022/05/13 01:30:58 UTC

[incubator-mxnet] branch v1.9.1-test updated: install gpg2 in cd docker file

This is an automated email from the ASF dual-hosted git repository.

weichu pushed a commit to branch v1.9.1-test
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/v1.9.1-test by this push:
     new c4118ac6f8 install gpg2 in cd docker file
c4118ac6f8 is described below

commit c4118ac6f8a2bc031cf3828aaa23616ff5232848
Author: Wei Chu <we...@amazon.com>
AuthorDate: Thu May 12 18:30:20 2022 -0700

    install gpg2 in cd docker file
---
 cd/python/docker/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cd/python/docker/Dockerfile b/cd/python/docker/Dockerfile
index cd071f570e..8db9fc654c 100644
--- a/cd/python/docker/Dockerfile
+++ b/cd/python/docker/Dockerfile
@@ -24,6 +24,7 @@ ARG BASE_IMAGE
 FROM ${BASE_IMAGE}
 
 # update cuda repo key: https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/
+RUN apt-get update && apt-get install -y gnupg2
 RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/$distro/$arch/3bf863cc.pub
 
 RUN apt-get update && \