From: Remi Gacogne Date: Thu, 22 May 2025 08:32:31 +0000 (+0200) Subject: dnsdist: Fix building on EL-8 (we now need Python 3.12 instead of 3.11) X-Git-Tag: dnsdist-2.0.0-alpha2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15580%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Fix building on EL-8 (we now need Python 3.12 instead of 3.11) --- diff --git a/builder-support/dockerfiles/Dockerfile.rpmbuild b/builder-support/dockerfiles/Dockerfile.rpmbuild index e62cdc3879..f233c2cbc7 100644 --- a/builder-support/dockerfiles/Dockerfile.rpmbuild +++ b/builder-support/dockerfiles/Dockerfile.rpmbuild @@ -1,7 +1,7 @@ FROM dist-base as package-builder RUN if $(grep -q 'release 8' /etc/redhat-release); then \ yum upgrade -y && \ - yum install --allowerasing -y rpm-build rpmdevtools python3.11 curl jq "@Development Tools" ninja-build hostname python3.11-pip python3.11-yaml ; \ + yum install --allowerasing -y rpm-build rpmdevtools python3.12 curl jq "@Development Tools" ninja-build hostname python3.12-pip python3.12-yaml ; \ else \ yum upgrade -y && \ yum install --allowerasing -y rpm-build rpmdevtools python3 curl jq "@Development Tools" ninja-build hostname python3-pip python3-yaml ; \