blob: 627ccc49f259783dacd2de66de25f29262739eeb [file]
node {
def app
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 */
app = docker.build("myserver_central:jenkinsversion --no-cache")
}
stage('Refresh containers') {
bat 'start cmd.exe /c C:\\Jenkinshelper\\refresh_docker.bat'
}
}