blob: 8651f617755b7d05ccea247981e981c94d3f84e3 [file]
node {
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 */
sh 'docker build --no-cache -t myserver_central:jenkinsversion .'
}
stage('Refresh containers') {
sh './C:/\Jenkinshelper/\refresh_docker.bat'
}
}