We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3adbd commit 916eee2Copy full SHA for 916eee2
docker/rockylinux9/Dockerfile
@@ -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