From f8823ec670de09b8131325540c5510f462424546 Mon Sep 17 00:00:00 2001 From: JackAKirk Date: Tue, 16 Apr 2024 16:54:48 +0100 Subject: [PATCH] Install deps manually. --- devops/containers/ubuntu2204_build.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devops/containers/ubuntu2204_build.Dockerfile b/devops/containers/ubuntu2204_build.Dockerfile index 63a16070548b8..63dd523ff8753 100644 --- a/devops/containers/ubuntu2204_build.Dockerfile +++ b/devops/containers/ubuntu2204_build.Dockerfile @@ -24,7 +24,7 @@ RUN wget https://repo.radeon.com/rocm/rocm.gpg.key -O - | \ echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/rocm.gpg] https://repo.radeon.com/rocm/apt/6.0.2 jammy main" \ | tee --append /etc/apt/sources.list.d/rocm.list && \ apt update && \ - apt install -fy rocm-dev && \ + apt install -yqq rocm-cmake rocminfo rocm-device-libs rocm-dev rocm-utils rocm-dev && \ # Cleanup apt-get clean && \ rm -rf /var/lib/apt/lists/*