From a833022c5b2efe388ea72cb8c94e1cf9da4a5b8a Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Tue, 24 Aug 2021 22:43:19 -0700 Subject: [PATCH] Consolidated container recipes and added DockerFile for OHPC --- containers/Docker/OpenHPC | 5 +++++ centos-7.def => containers/Singularity/centos-7.def | 0 centos-8.def => containers/Singularity/centos-8.def | 0 rocky-8.def => containers/Singularity/rocky-8.def | 0 4 files changed, 5 insertions(+) create mode 100644 containers/Docker/OpenHPC rename centos-7.def => containers/Singularity/centos-7.def (100%) rename centos-8.def => containers/Singularity/centos-8.def (100%) rename rocky-8.def => containers/Singularity/rocky-8.def (100%) diff --git a/containers/Docker/OpenHPC b/containers/Docker/OpenHPC new file mode 100644 index 00000000..33734f89 --- /dev/null +++ b/containers/Docker/OpenHPC @@ -0,0 +1,5 @@ +FROM warewulf/rocky:8 + +RUN dnf -y install http://repos.openhpc.community/OpenHPC/2/CentOS_8/x86_64/ohpc-release-2-1.el8.x86_64.rpm; \ + dnf -y install ohpc-base-compute ohpc-slurm-client chrony; \ + systemctl enable munge diff --git a/centos-7.def b/containers/Singularity/centos-7.def similarity index 100% rename from centos-7.def rename to containers/Singularity/centos-7.def diff --git a/centos-8.def b/containers/Singularity/centos-8.def similarity index 100% rename from centos-8.def rename to containers/Singularity/centos-8.def diff --git a/rocky-8.def b/containers/Singularity/rocky-8.def similarity index 100% rename from rocky-8.def rename to containers/Singularity/rocky-8.def