ium_s449288/Jenkinsfile1

16 lines
349 B
Plaintext
Raw Normal View History

2022-04-02 17:43:52 +02:00
pipeline {
agent {
dockerfile { image 's449288/ium:2.0' }
}
stages {
stage('Stage 1') {
steps {
sh 'chmod u+x ./process_dataset.py'
echo 'Processing dataset...'
sh 'python3 process_dataset.py'
echo 'Dataset processed'
}
}
}
}