workout/Jenkinsfile

11 lines
143 B
Plaintext
Raw Normal View History

2018-05-03 10:11:30 +02:00
pipeline {
2018-05-03 11:02:59 +02:00
agent any
2018-05-03 10:11:30 +02:00
stages {
stage('Build') {
steps {
2018-05-03 11:09:54 +02:00
sh 'docker build --pull -t workout:jenkins .'
2018-05-03 10:11:30 +02:00
}
}
}
2018-05-03 11:02:34 +02:00
}