ium_s449288/Jenkinsfile1

16 lines
345 B
Plaintext
Raw Normal View History

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