From: Peter van Dijk Date: Mon, 31 Jan 2022 17:15:14 +0000 (+0100) Subject: builder: add el-7 alias for centos-7 X-Git-Tag: auth-4.7.0-alpha1~36^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bd3c9bb23f5dfc385a66647ab175ec2812d6617;p=thirdparty%2Fpdns.git builder: add el-7 alias for centos-7 --- diff --git a/builder-support/dockerfiles/Dockerfile.target.centos-7 b/builder-support/dockerfiles/Dockerfile.target.centos-7 index 7e5032cd4b..9deb58b99c 100644 --- a/builder-support/dockerfiles/Dockerfile.target.centos-7 +++ b/builder-support/dockerfiles/Dockerfile.target.centos-7 @@ -3,10 +3,10 @@ # This defines the distribution base layer # Put only the bare minimum of common commands here, without dev tools -@IF [ ${BUILDER_TARGET} = centos-7 ] +@IF [ ${BUILDER_TARGET} = centos-7 -o ${BUILDER_TARGET} = el-7 ] FROM centos:7 as dist-base @ENDIF -@IF [ ${BUILDER_TARGET} = centos-7-amd64 ] +@IF [ ${BUILDER_TARGET} = centos-7-amd64 -o ${BUILDER_TARGET} = el-7-amd64] FROM amd64/centos:7 as dist-base @ENDIF diff --git a/builder-support/dockerfiles/Dockerfile.target.el-7 b/builder-support/dockerfiles/Dockerfile.target.el-7 new file mode 120000 index 0000000000..c6fc1ef94f --- /dev/null +++ b/builder-support/dockerfiles/Dockerfile.target.el-7 @@ -0,0 +1 @@ +Dockerfile.target.centos-7 \ No newline at end of file diff --git a/builder-support/dockerfiles/Dockerfile.target.el-7-amd64 b/builder-support/dockerfiles/Dockerfile.target.el-7-amd64 new file mode 120000 index 0000000000..3369705690 --- /dev/null +++ b/builder-support/dockerfiles/Dockerfile.target.el-7-amd64 @@ -0,0 +1 @@ +Dockerfile.target.centos-7-amd64 \ No newline at end of file