blob: 07bdf81983d64fc62cec60144b0d7230f149df70 [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 -t myserver_home:jenkinsversion .'
}
stage('Refresh containers') {
sh 'C:\\Jenkinshelper\\refresh_docker.bat'
}
}