Files
buildroot/Dockerfile.linux-builder
Rémi Verschelde 731b11dcc4 Update podman builders to recent versions
Fedora 36 for the Windows builder, and keeping CentOS 7 but applying
updates for the Linux one (needed to get newer ca-certificates).
2022-05-10 13:16:44 +02:00

9 lines
322 B
Docker

FROM centos:7
RUN yum -y update && \
yum -y install centos-release-scl && \
yum -y install devtoolset-9 && \
yum -y install make ncurses-devel which unzip perl cpio rsync fileutils bc bzip2 gzip sed git python file patch wget perl-Thread-Queue perl-Data-Dumper perl-ExtUtils-MakeMaker && \
yum clean all