From 6dfb613b4f7294580be265841f98b880cb6921ce Mon Sep 17 00:00:00 2001 From: Ben Radey Date: Fri, 16 Jan 2026 16:05:37 -0500 Subject: [PATCH] Adding xorg-x11-drv-nvidia-cuda to supermicro --- Containerfile-supermicro-x10drh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Containerfile-supermicro-x10drh b/Containerfile-supermicro-x10drh index c7e4679..116b129 100644 --- a/Containerfile-supermicro-x10drh +++ b/Containerfile-supermicro-x10drh @@ -79,10 +79,12 @@ RUN dnf5 install -y \ # TODO: Remove this `|| true` hack once post scriptlets no longer make dnf exit with non-zero RUN dnf5 install -y \ - akmod-nvidia || true && \ + akmod-nvidia \ + xorg-x11-drv-nvidia-cuda || true && \ dnf5 clean all # TODO: Remove these unnecessary checks to make sure the packages above actually got installed. rpm exits non-zero if the package is not installed and aborts the Containerfile build -RUN rpm -q akmod-nvidia +RUN rpm -q akmod-nvidia && \ + rpm -q xorg-x11-drv-nvidia-cuda # Build nvidia akmod with no special arguments - defaults to open kernel driver for newer hardware RUN mkdir -p /var/log/akmods /var/cache/akmods/nvidia /var/tmp && \