workout/Jenkinsfile

11 lines
143 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker build --pull -t workout:jenkins .'
}
}
}
}