ium_s487182/Jenkinsfile-Docker

13 lines
173 B
Plaintext
Raw Normal View History

2023-04-19 19:54:21 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Test') {
steps {
2023-04-19 19:57:12 +02:00
sh 'ls -l'
2023-04-19 19:57:59 +02:00
sh 'python3 create_dataset.py'
2023-04-19 19:54:21 +02:00
}
}
2023-04-19 19:50:03 +02:00
}
2023-04-19 18:03:00 +02:00
}