ium_434784/train.Jenkinsfile
Maciej Sobkowiak f01dad8596
Some checks failed
s434784-training/pipeline/head There was a failure building this commit
Added train Jenkinsfile
2021-05-16 16:05:03 +02:00

14 lines
330 B
Plaintext

pipeline {
agent any;
stage('docker-training') {
steps {
script {
def image = docker.build('dock')
image.inside{
sh 'training.py'
sh 'python3 ./training.py'
}
}
}
}
}