blob: 447d8a4ebe1e833da15817833565f74c3e450141 [file] [log] [blame]
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'
}
}