Browse Source

Don't define tasks for building IronBank Docker images

Rory Hunter 4 years ago
parent
commit
f1cf7c1402
1 changed files with 4 additions and 0 deletions
  1. 4 0
      distribution/docker/build.gradle

+ 4 - 0
distribution/docker/build.gradle

@@ -336,6 +336,10 @@ void addBuildDockerImage(Architecture architecture, boolean oss, DockerBase base
 
 for (final Architecture architecture : Architecture.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]) {
       if (oss && base != DockerBase.CENTOS) {
         // We only create Docker images for the OSS distribution on CentOS.