From c5be7c3f4e94862315652e5c714f1976329fe2af Mon Sep 17 00:00:00 2001 From: Dany LE Date: Fri, 30 Sep 2022 12:00:56 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ddc03b6..efa658a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline{ stage('Build AMD64') { agent { docker { - image 'xsangle/ci-tools:latest-amd64' + image 'xsangle/ci-tools:bionic-amd64' args '-v /var/jenkins_home/workspace/ant-http:/var/jenkins_home/workspace/ant-http' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, @@ -58,7 +58,7 @@ pipeline{ stage('Build ARM64') { agent { docker { - image 'xsangle/ci-tools:latest-arm64' + image 'xsangle/ci-tools:bionic-arm64' args '-v /var/jenkins_home/workspace/ant-http:/var/jenkins_home/workspace/ant-http' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, @@ -77,7 +77,7 @@ pipeline{ stage('Build ARM') { agent { docker { - image 'xsangle/ci-tools:latest-arm' + image 'xsangle/ci-tools:bionic-arm' args '-v /var/jenkins_home/workspace/ant-http:/var/jenkins_home/workspace/ant-http' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace,