diff --git a/Jenkinsfile b/Jenkinsfile index 12b9cd0..f1b2edd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,7 +40,7 @@ pipeline{ stage('Build AMD64') { agent { docker { - image 'xsangle/ci-tools:latest-amd64' + image 'xsangle/ci-tools:bionic-amd64' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, // rather than on a new node entirely: @@ -58,7 +58,7 @@ pipeline{ stage('Build ARM64') { agent { docker { - image 'xsangle/ci-tools:latest-arm64' + image 'xsangle/ci-tools:bionic-arm64' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, // rather than on a new node entirely: @@ -76,7 +76,7 @@ pipeline{ stage('Build ARM') { agent { docker { - image 'xsangle/ci-tools:latest-arm' + image 'xsangle/ci-tools:bionic-arm' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, // rather than on a new node entirely: