11 lines
201 B
Plaintext
Raw Normal View History

2019-05-23 13:56:46 +02:00
pipeline {
agent any
stages {
stage('build docker') {
steps {
2019-05-23 14:14:27 +02:00
sh 'docker build face_recognition/. -t face-recognition-flask'
2019-05-23 13:56:46 +02:00
}
}
}
}