-
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.
- Loading branch information
1 parent
406fc29
commit c4a9fa6
Showing
3 changed files
with
11 additions
and
0 deletions.
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,9 @@ | ||
FROM rockylinux:8.9 | ||
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) | ||
# perl-Thread-Queue is required by Automake | ||
RUN dnf -y install bzip2 curl diffutils file findutils gcc-c++ git glibc-langpack-en gzip make openssl openssl-devel patch perl-Thread-Queue rdma-core-devel sudo tar unzip which xz | ||
RUN python3 -m pip install archspec |