blob: 0db6dd9a07f63eeae09286ddd57fe03c7857a4cd [file] [log] [blame]
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 --rm --no-cache -t myserver_central:jenkinsversion .'
}
stage('Refresh containers') {
bat 'start cmd.exe /c C:\\Jenkinshelper\\refresh_docker.bat'
}
}