pipeline create

This commit is contained in:
fabrice 2019-05-23 13:56:46 +02:00
parent f05b7a89df
commit fedba9e802

10
face_recognition/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('build docker') {
steps {
sh 'docker build -t face-recognition-flask .'
}
}
}
}