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:
parent
e26d01e71f
commit
c24595e2ec
|
@ -3,7 +3,7 @@ apply plugin: 'base'
|
||||||
task buildOssUbiDockerBuildContext(type: Tar) {
|
task buildOssUbiDockerBuildContext(type: Tar) {
|
||||||
extension = 'tar.gz'
|
extension = 'tar.gz'
|
||||||
compression = Compression.GZIP
|
compression = Compression.GZIP
|
||||||
archiveClassifier = "oss-ubi-docker-build-context"
|
archiveClassifier = "oss-ubi7-docker-build-context"
|
||||||
archiveBaseName = "elasticsearch"
|
archiveBaseName = "elasticsearch"
|
||||||
with dockerBuildContext(true, true, false)
|
with dockerBuildContext(true, true, false)
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ apply plugin: 'base'
|
||||||
task buildUbiDockerBuildContext(type: Tar) {
|
task buildUbiDockerBuildContext(type: Tar) {
|
||||||
extension = 'tar.gz'
|
extension = 'tar.gz'
|
||||||
compression = Compression.GZIP
|
compression = Compression.GZIP
|
||||||
archiveClassifier = "ubi-docker-build-context"
|
archiveClassifier = "ubi7-docker-build-context"
|
||||||
archiveBaseName = "elasticsearch"
|
archiveBaseName = "elasticsearch"
|
||||||
with dockerBuildContext(false, true, false)
|
with dockerBuildContext(false, true, false)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue