From 8f982694c67d10d68343155bd97ef0d29c45a035 Mon Sep 17 00:00:00 2001 From: Dany LE Date: Tue, 2 Aug 2022 20:59:48 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 33a021b..ebf373a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ pipeline{ stage('Build AMD64') { agent { docker { - image ' xsangle/ci-tools:latest-amd64' + image 'xsangle/ci-tools:latest-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: @@ -60,7 +60,7 @@ pipeline{ stage('Build ARM64') { agent { docker { - image ' xsangle/ci-tools:latest-arm64' + image 'xsangle/ci-tools:latest-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: @@ -78,7 +78,7 @@ pipeline{ stage('Build ARM') { agent { docker { - image ' xsangle/ci-tools:latest-arm' + image 'xsangle/ci-tools:latest-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: