ium_434784/train.Jenkinsfile

14 lines
330 B
Plaintext
Raw Normal View History

2021-05-16 16:05:03 +02:00
pipeline {
agent any;
stage('docker-training') {
steps {
script {
def image = docker.build('dock')
image.inside{
sh 'training.py'
sh 'python3 ./training.py'
}
}
}
}
}