From 7e6a8b0f79299a342eb8a3d109e0807d9b657175 Mon Sep 17 00:00:00 2001 From: sunway513 Date: Thu, 25 Jun 2020 21:31:53 -0500 Subject: [PATCH] update the rocm-terminal Dockerfile --- rocm-terminal/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rocm-terminal/Dockerfile b/rocm-terminal/Dockerfile index 9636193..986e932 100644 --- a/rocm-terminal/Dockerfile +++ b/rocm-terminal/Dockerfile @@ -15,7 +15,7 @@ MAINTAINER Peng Sun # Initialize the image # Modify to pre-install dev tools and ROCm packages -RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends curl && \ +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends curl gnupg && \ curl -sL http://repo.radeon.com/rocm/apt/debian/rocm.gpg.key | apt-key add - && \ sh -c 'echo deb [arch=amd64] http://repo.radeon.com/rocm/apt/debian/ xenial main > /etc/apt/sources.list.d/rocm.list' && \ apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ @@ -27,7 +27,6 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins vim-nox \ cmake-curses-gui \ kmod \ - gnupg \ file \ rocm-dev && \ apt-get clean && \