12 lines
297 B
Groovy
12 lines
297 B
Groovy
|
apply plugin: 'base'
|
||
|
|
||
|
task buildDockerBuildContext(type: Tar) {
|
||
|
extension = 'tar.gz'
|
||
|
compression = Compression.GZIP
|
||
|
archiveClassifier = "docker-build-context"
|
||
|
archiveBaseName = "elasticsearch"
|
||
|
with dockerBuildContext(false, false)
|
||
|
}
|
||
|
|
||
|
assemble.dependsOn buildDockerBuildContext
|