SOLR-15075: Remove docker gradle artifact

Gradle is currently picking up the dockerBuild task in "assemble",
because of the build artifact.
This commit is contained in:
Houston Putman 2021-01-26 13:33:32 -05:00
parent 1887280475
commit 7da0fa8a07
1 changed files with 0 additions and 6 deletions

View File

@ -200,10 +200,4 @@ task dockerPush(dependsOn: tasks.dockerTag) {
// One task to build and tag a Solr docker image
task docker {
dependsOn tasks.dockerBuild, tasks.dockerTag
}
artifacts {
dockerImage(tasks.dockerBuild.outputs.files.singleFile) {
builtBy(tasks.dockerBuild)
}
}