@@ -52,6 +52,7 @@ It works by starting the required docker container and executing the [version gr
5252| Debian | 9, 10, 11 & 12 (full & slim) | [ Official Image] ( https://hub.docker.com/_/debian ) |
5353| Oracle Linux | 6, 7 & 8 (full & slim) | [ Official Image] ( https://hub.docker.com/_/oraclelinux ) |
5454| Photon | 1.0, 2.0, 3.0 & 4.0 | [ Official Image] ( https://hub.docker.com/_/photon ) |
55+ | Rocky Linux | 8 | [ Official Image] ( https://hub.docker.com/_/rockylinux ) |
5556| Scientific Linux | 7 | [ Official Image] ( https://hub.docker.com/_/sl ) |
5657| Ubuntu | 14.04, 16.04, 18.04 & 20.04 | [ Official Image] ( https://hub.docker.com/_/ubuntu ) |
5758
@@ -115,7 +116,7 @@ APK_VIRTUAL_PACKAGE= # Alpine Virtual Packages (These are not version
115116APT_PACKAGES= # Debian / Ubuntu Packages
116117PACMAN_PACKAGES= # Arch Linux
117118TDNF_PACKAGES= # Photon Packages
118- YUM_PACKAGES= # Amazon Linux / Centos / Oracle Linux / Scientific Linux
119+ YUM_PACKAGES= # Amazon Linux / Centos / Oracle Linux / Rocky Linux / Scientific Linux
119120YUM_GROUPS= # Yum Groups
120121```
121122> Oracle Linux 8 slim comes with ` microdnf ` instead of ` yum ` but we simply install yum using ` microdnf ` and then carry on as normal.
@@ -135,6 +136,8 @@ DEBIAN_PACKAGES= # Debian Packages
135136ORACLE_PACKAGES= # Oracle Linux Packages
136137ORACLE_GROUPS= # Oracle Groups
137138PHOTON_PACKAGES= # Photon Linux Packages
139+ ROCKY_PACKAGES= # Rocky Linux Packages
140+ ROCKY_GROUPS= # Rocky Linux Groups
138141SCIENTIFIC_PACKAGES= # Scientific Linux Packages
139142SCIENTIFIC_GROUPS= # Scientific Linux Groups
140143UBUNTU_PACKAGES= # Ubuntu Packages
@@ -261,6 +264,19 @@ tdnf install -y \
261264 && \
262265```
263266
267+ ### Rocky Linux
268+
269+ ```
270+ yum makecache && \
271+ yum install -y \
272+ bash-4.4.20 \
273+ curl-7.61.1 \
274+ git-2.27.0 \
275+ openssl-devel-1.1.1k \
276+ wget-1.19.5 \
277+ && \
278+ ```
279+
264280### Scientific Linux
265281
266282```
0 commit comments