diff --git a/Jenkinsfile_predict b/Jenkinsfile_predict index 13def17..7062c87 100644 --- a/Jenkinsfile_predict +++ b/Jenkinsfile_predict @@ -22,7 +22,7 @@ pipeline { steps { copyArtifacts projectName: 's444409-training/main', selector: buildParameter('BUILD_SELECTOR') sh "echo ${params.INPUT} > input_example.json" - sh "python predict.py" + sh "python3 predict.py" } } } diff --git a/Jenkinsfile_registry b/Jenkinsfile_registry index 7373578..fec9f00 100644 --- a/Jenkinsfile_registry +++ b/Jenkinsfile_registry @@ -9,7 +9,7 @@ pipeline { stages { stage('Script') { steps { - sh 'python3 ./registry.py' + sh 'python3 ./registry.py' } } }