Skip to content

Commit c13247d

Browse files
authored
fix(rockylinux): add the missing ccache package (#2180)
`ccache` is not distributed by the Rockylinux official repository, instead, we can install it though `EPEL`.
1 parent 496d7a3 commit c13247d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/pegasus-build-env/rockylinux9/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717

1818
FROM rockylinux/rockylinux:9.5.20241118
1919

20-
RUN dnf -y install autoconf \
20+
RUN dnf -y install epel-release && \
21+
dnf -y install autoconf \
2122
automake \
2223
bison \
24+
ccache \
2325
cmake \
2426
cyrus-sasl-devel \
2527
file \

0 commit comments

Comments
 (0)