From 5cada02e7f1cc48bb69d5db8e74cd9adbb8de209 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Wed, 7 Mar 2018 16:08:36 +0100 Subject: [PATCH] test --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 752777c..168842d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,10 @@ pipeline { /* This builds the actual image; synonymous to * docker build on the command line */ steps{ - app = docker.build("brokenfire/brokendiscordbot",'--build-arg BUILD_NBR=${BUILD_NUMBER} --build-arg BRANCH_NAME=${BRANCH_NAME} --rm=true .') + script{ + app = docker.build("brokenfire/brokendiscordbot",'--build-arg BUILD_NBR=${BUILD_NUMBER} --build-arg BRANCH_NAME=${BRANCH_NAME} --rm=true .') + } + } }