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

16 lines
342 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'
}
}
}
}
}
}