This commit is contained in:
Sebastien 2018-03-07 16:08:36 +01:00
parent e39b0ab24d
commit 5cada02e7f

5
Jenkinsfile vendored
View File

@ -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 .')
}
}
}