Skip to content

Commit 916eee2

Browse files
Add Docker File for RHEL 9 support. (#1135)
* Add * Add RHEL 9 support * Remove unwanted change * Add RHEL 9 support
1 parent 4f3adbd commit 916eee2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docker/rockylinux9/Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM rockylinux:9
2+
3+
## Common packages for linux build environment
4+
RUN yum install -y yum-utils && \
5+
yum-config-manager --enable crb && \
6+
yum update -y && \
7+
yum -y group install "Development Tools" && \
8+
yum install -y libcurl-devel zlib-devel clang python pkg-config git bzip2 unzip make wget sudo cmake && \
9+
yum -y install epel-release && \
10+
yum install -y zlib-static gmock gmock-devel gtest gtest-devel
11+
12+
CMD /bin/bash

0 commit comments

Comments
 (0)