From 0e908d012f79cb3694953879f3d0929eb4a6aa44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Barbero?= Date: Wed, 7 Apr 2021 18:47:40 +0200 Subject: [PATCH] Fix build on first PR --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6e0b80a..075c149 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -86,7 +86,7 @@ pipeline { } steps { sh ''' - docker build --pull --build-arg NGINX_IMAGE_TAG="${BASE_NGINX_IMAGE_TAG}" --build-arg HUGO_VERSION="${hugo_version}" --build-arg NODE_VERSION="${node_version}" -t ${IMAGE_NAME}:${TAG_NAME} -t ${IMAGE_NAME}:latest . + docker build --pull --build-arg NGINX_IMAGE_TAG="${BASE_NGINX_IMAGE_TAG}" --build-arg HUGO_VERSION="'''+params.hugo_version+'''" --build-arg NODE_VERSION="'''+params.node_version+'''" -t ${IMAGE_NAME}:${TAG_NAME} -t ${IMAGE_NAME}:latest . ''' } } -- GitLab