Skip to content

Commit

Permalink
fix(rockylinux): add the missing ccache package (#2180)
Browse files Browse the repository at this point in the history
`ccache` is not distributed by the Rockylinux official repository, instead, we
can install it though `EPEL`.
  • Loading branch information
acelyc111 authored Jan 14, 2025
1 parent 496d7a3 commit c13247d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/pegasus-build-env/rockylinux9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit c13247d

Please sign in to comment.