mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-16 09:54:55 +00:00
This commit fixes the name of the UBI-based Docker image build contexts to include "7" (to set us up for the future where we are likely to have a ubi8-based image).
12 lines
323 B
Groovy
12 lines
323 B
Groovy
apply plugin: 'base'
|
|
|
|
task buildOssUbiDockerBuildContext(type: Tar) {
|
|
extension = 'tar.gz'
|
|
compression = Compression.GZIP
|
|
archiveClassifier = "oss-ubi7-docker-build-context"
|
|
archiveBaseName = "elasticsearch"
|
|
with dockerBuildContext(true, true, false)
|
|
}
|
|
|
|
assemble.dependsOn buildOssUbiDockerBuildContext
|