Update Jenkinsfile

This commit is contained in:
Alicja Szulecka 2024-04-14 13:03:36 +02:00
parent 821d0d7e9c
commit 9413b985c5
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -38,6 +38,7 @@ pipeline {
stage('Train and Predict') {
steps {
script {
def customImage = docker.build("custom-image")
customImage.inside {
sh 'python3 ./model.py'
@ -48,3 +49,4 @@ pipeline {
}
}
}
}