Update Jenkinsfile

This commit is contained in:
Alicja Szulecka 2024-04-29 21:43:25 +02:00
parent 03f4d0b47a
commit 45beb68c25
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ pipeline {
script {
def customImage = docker.build("custom-image")
customImage.inside {
sh 'python3 ./model.py ${params.EPOCHS}'
sh 'python3 ./model.py' + params.EPOCHS
archiveArtifacts artifacts: 'model.pth, predictions.txt', onlyIfSuccessful: true
}
}