ium-helloworld/Jenkinsfile

18 lines
407 B
Plaintext
Raw Normal View History

2021-05-26 21:26:06 +02:00
node {
def img
stage('Preparation') { // for display purposes
img = docker.build('ium-helloworld')
}
stage('Train') {
img.inside('-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns ') {
sh 'ls -l /tmp/mlruns'
sh 'ls -l /mlruns'
sh './train.py'
sh 'ls -l /tmp/mlruns'
sh 'ls -l /mlruns'
}
}
}