This is an automated email from the ASF dual-hosted git repository.
bnolsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 0eb1e50 reinstall openssl-devel at the end for older branch builds
(#310)
0eb1e50 is described below
commit 0eb1e50db83dfe45e58bee12bc1d29f2683d3d4a
Author: Brian Olsen <[email protected]>
AuthorDate: Thu Jan 4 08:55:38 2024 -0700
reinstall openssl-devel at the end for older branch builds (#310)
---
docker/rockylinux9/Dockerfile | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/docker/rockylinux9/Dockerfile b/docker/rockylinux9/Dockerfile
index 3209387..f2ac436 100644
--- a/docker/rockylinux9/Dockerfile
+++ b/docker/rockylinux9/Dockerfile
@@ -118,7 +118,7 @@ RUN <<EOF
EOF
# Install lcov.
-RUN yum install -y perl-IO-Compress
+RUN dnf install -y perl-IO-Compress
ARG lcov_build_dir=/var/tmp/lcov_build_dir
RUN mkdir -p ${lcov_build_dir}
RUN <<EOF
@@ -134,9 +134,12 @@ RUN <<EOF
EOF
# Install ABI checking tools.
-RUN yum install -y ctags elfutils-libelf-devel wdiff
+RUN dnf install -y ctags elfutils-libelf-devel wdiff
COPY /install_abi_tools.sh /root/install_abi_tools.sh
RUN bash /root/install_abi_tools.sh
+# reinstall openssl-devel
+RUN dnf install -y openssl-devel
+
# Keep this at the end to clean up the yum cache.
RUN yum clean all