Simple stats from docker container

This commit is contained in:
MatOgr 2022-04-03 23:32:52 +02:00
parent 83ad133327
commit edae70473f

View File

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 's478841-create-dataset'
}
}
stages {
stage ('Show stats') {
steps {
sh 'ls -al'
sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
}
}
}
}