11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('build docker') {
|
||
|
steps {
|
||
|
sh 'docker build -t face-recognition-flask .'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|