blob: e68728c84f0de40d5e973b512559b878b57349c9 [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 --no-cache --rm -t myserver_home:jenkinsversion .'
}
stage('Refresh containers') {
bat 'start cmd.exe /c C:\\Jenkinshelper\\refresh_docker.bat'
}
}