Skip to content

Commit

Permalink
Changed plugin to use buildx.
Browse files Browse the repository at this point in the history
Now supports:
 - multi-arch builds
 - full caching for intemediate layers
 - pushing to local registry
  • Loading branch information
nigelgbanks committed Mar 7, 2021
1 parent d3f7e89 commit ac7d2ab
Show file tree
Hide file tree
Showing 3 changed files with 866 additions and 227 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ repositories {
gradlePluginPortal()
}

dependencies {
implementation("com.bmuschko:gradle-docker-plugin:6.7.0")
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -48,4 +44,8 @@ publishing {
}
}
}
}

kotlinDslPluginOptions {
experimentalWarning.set(false)
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit ac7d2ab

Please sign in to comment.