pipeline {
    agent any
    stages {
        stage('build docker') {
            steps {
                sh 'docker build -t face-recognition-flask .'
            }
        }
    }
}