face-recognition-app/face_recognition/Jenkinsfile

11 lines
201 B
Plaintext
Raw Permalink Normal View History

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