blob: e51b6af8659f8f0950993d766bf01529f04a18cd [file] [log] [blame]
node {
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Change directory') {
sh 'cd C:/\Users/\Administrator/\Projekt/\Microservices/\UbuntuServer/\central'
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
sh 'docker build --no-cache -t myserver_central:jenkinsversion .'
}
stage('Refresh containers') {
sh './C:/\Jenkinshelper/\refresh_docker.bat'
}
}