From 650198356b7c03e97da084e2a16c9df8cee2c73a Mon Sep 17 00:00:00 2001 From: Joe Schoonover Date: Thu, 5 Feb 2026 10:33:20 -0500 Subject: [PATCH] Ensure cmake and compilers are available This is a development container. --- envs/x86/rocm/Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/envs/x86/rocm/Dockerfile b/envs/x86/rocm/Dockerfile index 7f5ce6e..376c685 100644 --- a/envs/x86/rocm/Dockerfile +++ b/envs/x86/rocm/Dockerfile @@ -168,7 +168,15 @@ ARG GPU_BACKEND_VERSION=6.4.3 RUN sed -i "s/@GPU_BACKEND_VERSION@/${GPU_BACKEND_VERSION}/g" /etc/yum.repos.d/rocm.repo && \ dnf clean all && \ dnf update -y && \ - dnf install -y rocm-hip-libraries rocm-hip-runtime + dnf --enablerepo epel install -y rocm-hip-libraries rocm-hip-runtime \ + bzip2 \ + cmake \ + curl-minimal \ + file \ + findutils \ + gcc-c++ \ + gcc \ + gcc-gfortran # paths.view is a symlink, so copy the parent to avoid dereferencing and duplicating it COPY --from=builder /opt/views /opt/views