Skip to content

Commit

Permalink
Fix names of UBI-based Docker build contexts
Browse files Browse the repository at this point in the history
This commit fixes the names of the UBI-based Docker build contexts to
lift the ubi component of the name into the archive base name, instead
of the classifier.
  • Loading branch information
jasontedor committed Nov 11, 2019
1 parent 46ab1db commit acae071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions distribution/docker/oss-ubi-docker-build-context/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'base'
task buildOssUbiDockerBuildContext(type: Tar) {
extension = 'tar.gz'
compression = Compression.GZIP
archiveClassifier = "oss-ubi7-docker-build-context"
archiveBaseName = "elasticsearch"
archiveClassifier = "docker-build-context"
archiveBaseName = "elasticsearch-oss-ubi7"
with dockerBuildContext(true, true, false)
}

Expand Down
4 changes: 2 additions & 2 deletions distribution/docker/ubi-docker-build-context/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'base'
task buildUbiDockerBuildContext(type: Tar) {
extension = 'tar.gz'
compression = Compression.GZIP
archiveClassifier = "ubi7-docker-build-context"
archiveBaseName = "elasticsearch"
archiveClassifier = "docker-build-context"
archiveBaseName = "elasticsearch-ubi7"
with dockerBuildContext(false, true, false)
}

Expand Down

0 comments on commit acae071

Please sign in to comment.