fix Jenkinsfile_eval

This commit is contained in:
Krzysztof Raczyński 2024-05-13 20:40:12 +02:00
parent baf9235926
commit 2bbee09bd5

View File

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