# 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