Fix names of UBI-based Docker image build contexts

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).
This commit is contained in:
Jason Tedor 2019-11-01 17:27:36 -04:00
parent e26d01e71f
commit c24595e2ec
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ apply plugin: 'base'
task buildOssUbiDockerBuildContext(type: Tar) {
extension = 'tar.gz'
compression = Compression.GZIP
archiveClassifier = "oss-ubi-docker-build-context"
archiveClassifier = "oss-ubi7-docker-build-context"
archiveBaseName = "elasticsearch"
with dockerBuildContext(true, true, false)
}

View File

@ -3,7 +3,7 @@ apply plugin: 'base'
task buildUbiDockerBuildContext(type: Tar) {
extension = 'tar.gz'
compression = Compression.GZIP
archiveClassifier = "ubi-docker-build-context"
archiveClassifier = "ubi7-docker-build-context"
archiveBaseName = "elasticsearch"
with dockerBuildContext(false, true, false)
}