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