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

16 lines
344 B
Plaintext

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