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