From 28e21af0f53564361f12c0287fd8c6ca14274499 Mon Sep 17 00:00:00 2001 From: Robert Schumann Date: Fri, 10 Dec 2021 21:51:08 +0100 Subject: [PATCH] fix space --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 412bcc4..7c6b08a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,8 +31,8 @@ def pipeline() { stage('image build') { DOCKER_IMAGE = docker.build( - "${DOCKER_REGISTRY}/${DOCKER_REPO}:${BUILD_ID}", - "--build-arg UPSTREAM_IMAGE=${UPSTREAM_IMAGE}" + + "${DOCKER_REGISTRY}/${DOCKER_REPO}:${BUILD_ID} ", + "--build-arg UPSTREAM_IMAGE=${UPSTREAM_IMAGE} " + "--no-cache ${DOCKER_ARGS} ." ) }