Docker build step

master
marius 2020-04-21 15:10:21 +02:00
parent 1a500971ad
commit 5b7d7a5624
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -8,4 +8,11 @@ node {
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("wishi/chuckjokes")
}
}