chucknorris-kotlin-spring/Jenkinsfile
2020-04-21 15:10:21 +02:00

18 lines
399 B
Groovy

node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("wishi/chuckjokes")
}
}