From af6ae97853af48fe78e63d4ef3d8229a722fb131 Mon Sep 17 00:00:00 2001 From: Ryan Cook Date: Thu, 6 Jun 2024 15:50:32 -0400 Subject: [PATCH] fix of broken install Signed-off-by: Ryan Cook --- model_servers/llamacpp_python/vulkan/Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/model_servers/llamacpp_python/vulkan/Containerfile b/model_servers/llamacpp_python/vulkan/Containerfile index c85c9a59..c1fbfc73 100644 --- a/model_servers/llamacpp_python/vulkan/Containerfile +++ b/model_servers/llamacpp_python/vulkan/Containerfile @@ -1,7 +1,9 @@ FROM registry.access.redhat.com/ubi9/python-311:1-62.1716478620 USER 0 RUN dnf install -y python3-dnf-plugin-versionlock && \ - dnf copr enable -y slp/mesa-krunkit epel-9-aarch64 && \ + dnf install -y \ +https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \ + dnf copr enable -y slp/mesa-krunkit && \ dnf install -y mesa-vulkan-drivers-23.3.3-101.el9.aarch64 && \ dnf versionlock mesa-vulkan-drivers-23.3.3-101.el9.aarch64 && \ dnf install -y git cmake ninja-build gcc gcc-c++ vulkan-loader-devel vulkan-tools