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 18:22:47 UTC

[incubator-mxnet] branch v1.9.1-test updated: fix install gpg

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 d94c5afc62 fix install gpg
d94c5afc62 is described below

commit d94c5afc62a63d66a7ae84432fba50abc617781b
Author: Wei Chu <we...@amazon.com>
AuthorDate: Fri May 13 11:22:14 2022 -0700

    fix install gpg
---
 cd/python/docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cd/python/docker/Dockerfile b/cd/python/docker/Dockerfile
index 8db9fc654c..9645f3bb99 100644
--- a/cd/python/docker/Dockerfile
+++ b/cd/python/docker/Dockerfile
@@ -24,7 +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-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 && \