From 03719a798774abd22806efebbc5426546eb70068 Mon Sep 17 00:00:00 2001 From: Dianjin Wang Date: Thu, 4 Dec 2025 15:07:26 +0800 Subject: [PATCH] Sandbox: Add liburing to Rocky Linux 9 Dockerfile Add liburing-devel (build) and liburing (runtime) packages to Rocky Linux 9 sandbox for PAX storage fast I/O support. This dependency is introduced by the PR #1464 . --- devops/sandbox/Dockerfile.main.rockylinux9 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devops/sandbox/Dockerfile.main.rockylinux9 b/devops/sandbox/Dockerfile.main.rockylinux9 index c5476aa370f..03619cda4ba 100644 --- a/devops/sandbox/Dockerfile.main.rockylinux9 +++ b/devops/sandbox/Dockerfile.main.rockylinux9 @@ -99,6 +99,7 @@ RUN dnf makecache && \ readline-devel \ zlib-devel && \ dnf install -y --enablerepo=crb \ + liburing-devel \ libuv-devel \ libyaml-devel \ perl-IPC-Run \ @@ -165,6 +166,7 @@ RUN dnf -y update && \ krb5-libs \ libevent \ libicu \ + liburing \ libuuid \ libxml2 \ libyaml \