From c13247d1473f59afdebb357bae6f8b75755c69fe Mon Sep 17 00:00:00 2001 From: Yingchun Lai Date: Tue, 14 Jan 2025 11:47:33 +0800 Subject: [PATCH] fix(rockylinux): add the missing ccache package (#2180) `ccache` is not distributed by the Rockylinux official repository, instead, we can install it though `EPEL`. --- docker/pegasus-build-env/rockylinux9/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/pegasus-build-env/rockylinux9/Dockerfile b/docker/pegasus-build-env/rockylinux9/Dockerfile index 49852d0f6a..66ff88ef57 100644 --- a/docker/pegasus-build-env/rockylinux9/Dockerfile +++ b/docker/pegasus-build-env/rockylinux9/Dockerfile @@ -17,9 +17,11 @@ FROM rockylinux/rockylinux:9.5.20241118 -RUN dnf -y install autoconf \ +RUN dnf -y install epel-release && \ + dnf -y install autoconf \ automake \ bison \ + ccache \ cmake \ cyrus-sasl-devel \ file \