sunyue
1 year ago
1 changed files with 18 additions and 22 deletions
@ -1,25 +1,21 @@ |
|||||
podTemplate { |
podTemplate { |
||||
node('pod-templ-jenkins-slave-common') { |
node('pod-templ-jenkins-slave-common') { |
||||
|
|
||||
env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${PEP}/${JOB_NAME}" |
env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${PEP}/${JOB_NAME}" |
||||
env.IMAGE_NAME_SHORT = "${PEP}/${JOB_NAME}" |
env.IMAGE_NAME_SHORT = "${PEP}/${JOB_NAME}" |
||||
env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/HumanResource.git" |
env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/HumanResource.git" |
||||
|
|
||||
stage('Run shell') { |
stage('Run shell') { |
||||
git branch: 'master', credentialsId: 'gitea-builder', url: "${CODE_ADDR}" |
git branch: 'master', credentialsId: 'gitea-builder', url: "${CODE_ADDR}" |
||||
|
|
||||
container('image-builder') { |
container('image-builder') { |
||||
sh''' |
sh''' |
||||
|
/kaniko/executor --context=${BUILD_WORKSPACE} --dockerfile=./api/Dockerfile --destination=${IMAGE_NAME}:${IMAGE_VERSION} --cache=false --cleanup |
||||
|
''' |
||||
|
} |
||||
|
|
||||
/kaniko/executor --context=${BUILD_WORKSPACE} |
buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}" |
||||
--dockerfile=./api/Dockerfile |
buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}" |
||||
--destination=${IMAGE_NAME}:${IMAGE_VERSION} |
} |
||||
--cache=false --cleanup |
} |
||||
''' |
|
||||
} |
|
||||
|
|
||||
buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}" |
|
||||
buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}" |
|
||||
} |
|
||||
} |
|
||||
} |
} |
Loading…
Reference in new issue