summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJonathon Anderson <17242663+blue42u@users.noreply.github.com>2024-04-26 20:02:04 -0500
committerGitHub <noreply@github.com>2024-04-26 20:02:04 -0500
commitae9f2d4d408ada31aa463d4d0fc9a0fcf4268266 (patch)
tree0101b9525a86a56cc3d4c9ae9f4d7df1ade7c2ee /share
parent5a3814ff159829c990bc9904a1a47aecc7ca024a (diff)
downloadspack-ae9f2d4d408ada31aa463d4d0fc9a0fcf4268266.tar.gz
spack-ae9f2d4d408ada31aa463d4d0fc9a0fcf4268266.tar.bz2
spack-ae9f2d4d408ada31aa463d4d0fc9a0fcf4268266.tar.xz
spack-ae9f2d4d408ada31aa463d4d0fc9a0fcf4268266.zip
containers: Add Fedora 40, 39 (#43847)
Diffstat (limited to 'share')
-rw-r--r--share/spack/templates/container/fedora.dockerfile (renamed from share/spack/templates/container/fedora_38.dockerfile)0
-rw-r--r--share/spack/templates/container/fedora_37.dockerfile29
2 files changed, 0 insertions, 29 deletions
diff --git a/share/spack/templates/container/fedora_38.dockerfile b/share/spack/templates/container/fedora.dockerfile
index 4856ad2197..4856ad2197 100644
--- a/share/spack/templates/container/fedora_38.dockerfile
+++ b/share/spack/templates/container/fedora.dockerfile
diff --git a/share/spack/templates/container/fedora_37.dockerfile b/share/spack/templates/container/fedora_37.dockerfile
deleted file mode 100644
index 6cea1e0cd3..0000000000
--- a/share/spack/templates/container/fedora_37.dockerfile
+++ /dev/null
@@ -1,29 +0,0 @@
-{% extends "container/bootstrap-base.dockerfile" %}
-{% block install_os_packages %}
-RUN dnf update -y \
- && dnf install -y \
- bzip2 \
- curl \
- file \
- findutils \
- gcc-c++ \
- gcc \
- gcc-gfortran \
- git \
- gnupg2 \
- hg \
- hostname \
- iproute \
- make \
- patch \
- python3 \
- python3-pip \
- python3-setuptools \
- svn \
- unzip \
- zstd \
- xz \
- && pip3 install boto3 \
- && rm -rf /var/cache/dnf \
- && dnf clean all
-{% endblock %}