mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-08-23 02:28:24 +02:00
Alma8 don't provide Exporter::shiny in a recent enough version (provide 1.000000 instead of 1.002002) so we must build this dep. REF:CTOR-525
20 lines
398 B
Docker
20 lines
398 B
Docker
ARG REGISTRY_URL=docker.io
|
|
|
|
FROM ${REGISTRY_URL}/centos:7
|
|
|
|
RUN bash -e <<EOF
|
|
|
|
echo '[goreleaser]
|
|
name=GoReleaser
|
|
baseurl=https://repo.goreleaser.com/yum/
|
|
enabled=1
|
|
gpgcheck=0' | tee /etc/yum.repos.d/goreleaser.repo
|
|
|
|
yum -y install git gettext rpm-build dos2unix python3 epel-release nfpm
|
|
yum -y install perl-App-FatPacker perl-File-Copy-Recursive perl-JSON jq zstd
|
|
yum clean all
|
|
|
|
EOF
|
|
|
|
WORKDIR /src
|