chucknorris-kotlin-spring/Jenkinsfile

18 lines
399 B
Plaintext
Raw Normal View History

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