From: Peter van Dijk Date: Mon, 31 Jan 2022 15:43:54 +0000 (+0100) Subject: take centos 8-stream from quay X-Git-Tag: auth-4.7.0-alpha1~36^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2f9edddc0c9c1f8a68e154f6c12e3fd214420563;p=thirdparty%2Fpdns.git take centos 8-stream from quay --- diff --git a/builder-support/dockerfiles/Dockerfile.target.centos-8 b/builder-support/dockerfiles/Dockerfile.target.centos-8 index ce5bd3bd90..ae0e4c9ab9 100644 --- a/builder-support/dockerfiles/Dockerfile.target.centos-8 +++ b/builder-support/dockerfiles/Dockerfile.target.centos-8 @@ -3,9 +3,12 @@ # This defines the distribution base layer # Put only the bare minimum of common commands here, without dev tools -@IF [ ${BUILDER_TARGET} = centos-8 -o ${BUILDER_TARGET} = centos-8-stream ] +@IF [ ${BUILDER_TARGET} = centos-8 ] FROM centos:8 as dist-base @ENDIF +@IF [ ${BUILDER_TARGET} = centos-8-stream ] +FROM quay.io/centos/centos:stream8 as dist-base +@ENDIF @IF [ ${BUILDER_TARGET} = centos-8-amd64 ] FROM amd64/centos:8 as dist-base @ENDIF