ES-839: Disable Internal docker publishing for 4.7 ( only supported post 4.9 pacthes) (#7410)

* ES-839: Disable Docker publishing for 4.7
* ES-839: remove broken repo
This commit is contained in:
Ronan Browne 2023-07-05 16:28:08 +01:00 committed by GitHub
parent e100bee4f1
commit 6b1a2cb027
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -279,7 +279,7 @@ pipeline {
stage('Publish Release Candidate to Internal Repository') {
when {
expression { isReleaseCandidate }
expression { return false} // keeping stage to preserve Jenkins history on release branches, but not supported for patch builds pre 4.9
}
steps {
withCredentials([

View File

@ -1,5 +1,8 @@
FROM azul/zulu-openjdk:8u192
## Remove Azul Zulu repo, as it is gone by now
RUN rm /etc/apt/sources.list.d/zulu.list
## Add packages, clean cache, create dirs, create corda user and change ownership
RUN apt-get update && \
apt-get -y upgrade && \