summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJonathon Anderson <17242663+blue42u@users.noreply.github.com>2023-04-28 05:28:33 -0500
committerGitHub <noreply@github.com>2023-04-28 12:28:33 +0200
commitcba8d1253db865466f835faa035fe52e7a5c1394 (patch)
tree4bb8a260b54b8164824c57f441dc2f726bfb76c4 /lib
parentc87cc5c7b1165b8032f711a26ea123af67a14a42 (diff)
downloadspack-cba8d1253db865466f835faa035fe52e7a5c1394.tar.gz
spack-cba8d1253db865466f835faa035fe52e7a5c1394.tar.bz2
spack-cba8d1253db865466f835faa035fe52e7a5c1394.tar.xz
spack-cba8d1253db865466f835faa035fe52e7a5c1394.zip
Add container images supporting RHEL alternatives (#36713)
Add container support for AlmaLinux, Fedora 37 and 38 and Rocky Linux
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/container/images.json84
1 files changed, 84 insertions, 0 deletions
diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json
index 1429864f6d..296658fe5e 100644
--- a/lib/spack/spack/container/images.json
+++ b/lib/spack/spack/container/images.json
@@ -12,6 +12,90 @@
},
"os_package_manager": "yum_amazon"
},
+ "fedora:38": {
+ "bootstrap": {
+ "template": "container/fedora_38.dockerfile",
+ "image": "docker.io/fedora:38"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/fedora38",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "docker.io/fedora:38"
+ }
+ },
+ "fedora:37": {
+ "bootstrap": {
+ "template": "container/fedora_37.dockerfile",
+ "image": "docker.io/fedora:37"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/fedora37",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "docker.io/fedora:37"
+ }
+ },
+ "rockylinux:9": {
+ "bootstrap": {
+ "template": "container/rockylinux_9.dockerfile",
+ "image": "docker.io/rockylinux:9"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/rockylinux9",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "docker.io/rockylinux:9"
+ }
+ },
+ "rockylinux:8": {
+ "bootstrap": {
+ "template": "container/rockylinux_8.dockerfile",
+ "image": "docker.io/rockylinux:8"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/rockylinux8",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "docker.io/rockylinux:8"
+ }
+ },
+ "almalinux:9": {
+ "bootstrap": {
+ "template": "container/almalinux_9.dockerfile",
+ "image": "quay.io/almalinux/almalinux:9"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/almalinux9",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "quay.io/almalinux/almalinux:9"
+ }
+ },
+ "almalinux:8": {
+ "bootstrap": {
+ "template": "container/almalinux_8.dockerfile",
+ "image": "quay.io/almalinux/almalinux:8"
+ },
+ "os_package_manager": "yum",
+ "build": "spack/almalinux8",
+ "build_tags": {
+ "develop": "latest"
+ },
+ "final": {
+ "image": "quay.io/almalinux/almalinux:8"
+ }
+ },
"centos:stream": {
"bootstrap": {
"template": "container/centos_stream.dockerfile",