Don't define tasks for building IronBank Docker images

This commit is contained in:
Rory Hunter 2020-11-17 15:11:46 +00:00
parent 2917d751fd
commit f1cf7c1402

View file

@ -336,6 +336,10 @@ void addBuildDockerImage(Architecture architecture, boolean oss, DockerBase base
for (final Architecture architecture : Architecture.values()) { for (final Architecture architecture : Architecture.values()) {
for (final DockerBase base : DockerBase.values()) { for (final DockerBase base : DockerBase.values()) {
if (base == DockerBase.IRON_BANK) {
// At the moment we don't actually build the Iron Bank image
continue
}
for (final boolean oss : [false, true]) { for (final boolean oss : [false, true]) {
if (oss && base != DockerBase.CENTOS) { if (oss && base != DockerBase.CENTOS) {
// We only create Docker images for the OSS distribution on CentOS. // We only create Docker images for the OSS distribution on CentOS.