3.15.0
dockers/alpine/pipeline/head This commit looks good Details

This commit is contained in:
chris 2021-11-28 20:03:30 +01:00
parent 4fd7b40e4f
commit 0a44d08522
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
FROM alpine as build
ARG VERSION
ENV ALPINE_SERIES 3.14
ENV ALPINE_SERIES 3.15
ENV ALPINE_MIRROR https://ftp.halifax.rwth-aachen.de/alpine/v${ALPINE_SERIES}
ENV ALPINE_ARCH x86_64

12
Jenkinsfile vendored
View File

@ -1,4 +1,4 @@
version = "3.14.3"
version = "3.15.0"
project = "alpine"
repo = "zknt"
registry = "reg.zknt.org"
@ -14,14 +14,14 @@ pipeline {
script {
def customImage = docker.build(registry+'/'+repo+'/'+project, "--pull --build-arg VERSION=$version --build-arg DATE=$timeStamp .")
customImage.push(version)
customImage.push("3.14")
customImage.push("3.15")
def io_registry_credentials = "3deeee3d-6fce-4430-98dd-9b4db56f43f7"
withDockerRegistry([ credentialsId: io_registry_credentials ]) {
def io_registry_image = repo + '/' + project + ':' + version
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + io_registry_image
sh "docker push " + io_registry_image
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + io_registry_image.split(/\:/)[0] + ":3.14"
sh "docker push " + io_registry_image.split(/\:/)[0] + ":3.14"
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + io_registry_image.split(/\:/)[0] + ":3.15"
sh "docker push " + io_registry_image.split(/\:/)[0] + ":3.15"
}
def quay_credentials= "18fb6f7e-c6bc-4d06-9bf9-08c2af6bfc1a"
@ -29,8 +29,8 @@ pipeline {
def quay_image = 'quay.io/' + repo + '/' + project + ':' + version
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image
sh "docker push " + quay_image
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image.split(/\:/)[0] + ":3.14"
sh "docker push " + quay_image.split(/\:/)[0] + ":3.14"
sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image.split(/\:/)[0] + ":3.15"
sh "docker push " + quay_image.split(/\:/)[0] + ":3.15"
}
}
}

View File

@ -1,5 +1,5 @@
---
version: 3.14.3
version: 3.15.0
project: alpine
additional_tags:
- 3.14
- 3.15