ium_444409/Jenkinsfile-stats-docker

15 lines
229 B
Plaintext
Raw Normal View History

2022-04-01 23:05:56 +02:00
pipeline {
agent {
2022-04-02 17:15:51 +02:00
docker {
image 's444409-create-dataset'
}
2022-04-01 23:05:56 +02:00
}
stages {
stage('Show stats') {
steps {
2022-04-02 17:15:51 +02:00
sh "/app/stats.sh"
2022-04-01 23:05:56 +02:00
}
}
}
}