fix Jenkinsfile_eval

This commit is contained in:
Krzysztof Raczyński 2024-05-13 20:40:12 +02:00
parent baf9235926
commit 2bbee09bd5
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,12 @@ pipeline {
}
}
stage('Predict') {
agent {
dockerfile {
filename 'Dockerfile'
reuseNode true
}
}
steps {
sh "chmod +x ./predict.py"
sh "python ./predict.py"