-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from SebastianAchilles/rockylinux88+92
add container for Rocky Linux 8.8 and 9.2
- Loading branch information
Showing
4 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM rockylinux:8.8 | ||
RUN useradd -ms /bin/bash easybuild | ||
# enable PowerTools repository, required by Lmod in EPEL | ||
RUN dnf -y install dnf-plugins-core && dnf config-manager --set-enabled powertools \ | ||
&& dnf -y install epel-release && dnf -y install python3 Lmod | ||
# glibc-langpack-en provides locale stuff (for en_US.UTF-8) | ||
RUN dnf -y install bzip2 curl diffutils file findutils gcc-c++ git glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz | ||
RUN python3 -m pip install archspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM rockylinux:9.2 | ||
RUN useradd -ms /bin/bash easybuild | ||
RUN dnf -y update \ | ||
# enable crb repository | ||
&& dnf -y install dnf-plugins-core && dnf config-manager --set-enabled crb \ | ||
&& dnf -y install epel-release && dnf -y install python3 python3-pip Lmod | ||
# --allowerasing is required to allow to install curl and remove conflicting curl-minimal which is part of the base image | ||
# glibc-langpack-en provides locale stuff (for en_US.UTF-8) | ||
RUN dnf -y --allowerasing install bzip2 curl diffutils file findutils gcc-c++ git glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz | ||
# install requirements to build OpenSSL 1.1 and 3.0 from source | ||
RUN dnf -y install perl-FindBin perl-File-Compare perl-File-Copy perl-IPC-Cmd perl-Pod-Html | ||
RUN python3 -m pip install archspec |