dockerscript

This commit is contained in:
s487179 2023-04-20 19:46:26 +02:00
parent 6ad6b3c5c3
commit 4a706a5a3b

View File

@ -41,6 +41,9 @@ pipeline {
def dockerImage = docker.build("docker-iamge", "./docker") def dockerImage = docker.build("docker-iamge", "./docker")
dockerImage.inside { dockerImage.inside {
sh 'ls -l' sh 'ls -l'
dir ('./createDataset') {
sh 'ls -l'
}
} }
} }
} }