Skip to content

Commit 775eef3

Browse files
committed
#369 Fix Docker build by pushing
Switching off Docker push leads to ERROR: failed to build: docker exporter does not currently support exporting manifest lists
1 parent e8ff7fe commit 775eef3

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ tasks.register("integrationTestOnly") {
354354
dependsOn(
355355
':publishAllPublicationsToMyLocalRepositoryForFullIntegrationTestsRepository',
356356
':htmlSanityCheck-cli:installDist',
357-
':htmlSanityCheck-cli:dockerBuildLocal'
357+
':htmlSanityCheck-cli:dockerBuild'
358358
)
359359

360360
doLast {

htmlSanityCheck-cli/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ docker {
5656
applyLatestTag = false
5757
}
5858

59-
tasks.register('dockerBuildLocal', com.fussionlabs.gradle.docker.tasks.DockerBuildx) {
60-
loadImage = true
61-
pushImage = false
62-
63-
dependsOn shadowJar
64-
}
59+
//tasks.register('dockerBuildLocal', com.fussionlabs.gradle.docker.tasks.DockerBuildx) {
60+
// loadImage = true
61+
// // pushImage = false // Multi-Platform images need the push
62+
//
63+
// dependsOn shadowJar
64+
//}
6565

6666
/*
6767
* Copyright Gerd Aschemann and aim42 contributors.

0 commit comments

Comments
 (0)