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') { stage('Run sh file') {
steps { steps {
sh 'ls -l' script {
docker.image('docker-image').inside { sh 'ls -l'
dir('./datasetStats') { docker.image('docker-image').inside {
sh 'ls -l' dir('./datasetStats') {
sh 'python3 ./datasetStats.py' sh 'ls -l'
sh 'python3 ./datasetStats.py'
}
} }
} }
} }