Skip to content

Commit

Permalink
Fix additional tag handling in container-image-docker
Browse files Browse the repository at this point in the history
Fixes: quarkusio#26383
(cherry picked from commit 0a7b2eb)
  • Loading branch information
geoand authored and gsmet committed Jun 28, 2022
1 parent 8c606d0 commit d24e402
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private String createContainerImage(ContainerImageConfig containerImageConfig, D
// If not using buildx, push the images
loginToRegistryIfNeeded(containerImageConfig, containerImageInfo, dockerConfig);

Stream.concat(containerImageInfo.getAdditionalTags().stream(), Stream.of(containerImageInfo.getImage()))
Stream.concat(containerImageInfo.getAdditionalImageTags().stream(), Stream.of(containerImageInfo.getImage()))
.forEach(imageToPush -> pushImage(imageToPush, dockerConfig));
}
}
Expand Down Expand Up @@ -474,4 +474,4 @@ public Path getDockerExecutionPath() {
}
}

}
}

0 comments on commit d24e402

Please sign in to comment.