datasetStats docker

This commit is contained in:
s487179 2023-04-20 20:06:43 +02:00
parent 2dda9f1151
commit 4598da6ab7

View File

@ -21,11 +21,13 @@ pipeline {
}
stage('Run sh file') {
steps {
sh 'ls -l'
docker.image('docker-image').inside {
dir('./datasetStats') {
sh 'ls -l'
sh 'python3 ./datasetStats.py'
script {
sh 'ls -l'
docker.image('docker-image').inside {
dir('./datasetStats') {
sh 'ls -l'
sh 'python3 ./datasetStats.py'
}
}
}
}