From 8ecda1418274b2d39e8ac43dba2f312983b63c33 Mon Sep 17 00:00:00 2001 From: RomanNikitenko Date: Mon, 23 Dec 2024 10:21:36 +0000 Subject: [PATCH] fix: Fix podman build for ubi9-based assembly Signed-off-by: RomanNikitenko --- build/dockerfiles/linux-libc-ubi9.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/dockerfiles/linux-libc-ubi9.Dockerfile b/build/dockerfiles/linux-libc-ubi9.Dockerfile index 5f101c43f20..56ddc348e25 100644 --- a/build/dockerfiles/linux-libc-ubi9.Dockerfile +++ b/build/dockerfiles/linux-libc-ubi9.Dockerfile @@ -112,7 +112,7 @@ RUN if [ "$(uname -m)" = "x86_64" ]; then npm run playwright-install; fi RUN if [ "$(uname -m)" = "x86_64" ]; then \ ARCH=$(uname -m) && \ yum install --nobest -y procps \ - https://rpmfind.net/linux/epel/9/Everything/${ARCH}/Packages/e/epel-release-9-8.el9.noarch.rpm \ + https://rpmfind.net/linux/epel/9/Everything/${ARCH}/Packages/e/epel-release-9-9.el9.noarch.rpm \ https://rpmfind.net/linux/centos-stream/9-stream/BaseOS/${ARCH}/os/Packages/centos-gpg-keys-9.0-23.el9.noarch.rpm \ https://rpmfind.net/linux/centos-stream/9-stream/BaseOS/${ARCH}/os/Packages/centos-stream-repos-9.0-23.el9.noarch.rpm; \ fi