ium_444356/Jenkinsfile_registry
Maciej Czajka cbadafdb37
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good
update jenkinsfile_registry, add jenkinsfile_train-sacred-old
2022-05-11 20:57:10 +02:00

17 lines
298 B
Plaintext

pipeline {
agent {
docker {
image 'maciejczajka'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Script') {
steps {
copyArtifacts projectName: 's444409-training/main'
sh 'python3 ./registry.py'
}
}
}
}