ium_444356/Jenkinsfile_docker

13 lines
166 B
Plaintext
Raw Normal View History

2022-04-01 13:12:51 +02:00
pipeline {
agent {
2022-04-01 13:17:21 +02:00
dockerfile true
2022-04-01 13:12:51 +02:00
}
stages {
stage('Test') {
steps {
2022-04-01 13:33:32 +02:00
sh './download.sh'
2022-04-01 13:35:09 +02:00
sh 'python3 ./main.py'
2022-04-01 13:12:51 +02:00
}
}
}
}