Docker build step

This commit is contained in:
marius 2020-04-21 15:10:21 +02:00
parent 1a500971ad
commit 5b7d7a5624

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")
}
}