containers: rm centos7 since EOL (#45049)

This commit is contained in:
Wouter Deconinck
2024-07-04 15:22:23 -05:00
committed by GitHub
parent 8077285a63
commit 04044a9744
4 changed files with 0 additions and 39 deletions

View File

@@ -1,28 +0,0 @@
{% extends "container/bootstrap-base.dockerfile" %}
{% block install_os_packages %}
RUN yum update -y \
&& yum install -y epel-release \
&& yum update -y \
&& yum --enablerepo epel groupinstall -y "Development Tools" \
&& yum --enablerepo epel install -y \
curl \
findutils \
gcc-c++ \
gcc \
gcc-gfortran \
git \
gnupg2 \
hostname \
hg \
iproute \
make \
patch \
python3 \
python3-pip \
python3-setuptools \
unzip \
zstd \
&& pip3 install boto3 \
&& rm -rf /var/cache/yum \
&& yum clean all
{% endblock %}