
This PR updates the list of images we build nightly, deprecating Ubuntu 16.04 and CentOS 8 and adding Ubuntu 20.04, Ubuntu 22.04 and CentOS Stream. It also removes a lot of duplication by generating the Dockerfiles during the CI workflow and uploading them as artifacts for later inspection or reuse.
25 lines
531 B
Docker
25 lines
531 B
Docker
{% extends "container/bootstrap-base.dockerfile" %}
|
|
{% block install_os_packages %}
|
|
RUN yum update -y \
|
|
&& yum groupinstall -y "Development Tools" \
|
|
&& yum install -y \
|
|
curl \
|
|
findutils \
|
|
gcc-c++ \
|
|
gcc \
|
|
gcc-gfortran \
|
|
git \
|
|
gnupg2 \
|
|
hostname \
|
|
iproute \
|
|
make \
|
|
patch \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
unzip \
|
|
&& pip3 install boto3 \
|
|
&& rm -rf /var/cache/yum \
|
|
&& yum clean all
|
|
{% endblock %}
|