This is an automated email from the ASF dual-hosted git repository.
laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git
The following commit(s) were added to refs/heads/master by this push:
new c13247d14 fix(rockylinux): add the missing ccache package (#2180)
c13247d14 is described below
commit c13247d1473f59afdebb357bae6f8b75755c69fe
Author: Yingchun Lai <[email protected]>
AuthorDate: Tue Jan 14 11:47:33 2025 +0800
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 49852d0f6..66ff88ef5 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 \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]