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

16 lines
351 B
Plaintext

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