Update 'Jenkinsfile-Docker'

This commit is contained in:
Wojciech Mikołajski 2023-04-19 19:12:18 +02:00
parent a2968655bd
commit 30c7b814a9

View File

@ -2,7 +2,8 @@ node {
checkout scm checkout scm
def testImage = docker.build("test-image") def testImage = docker.build("test-image")
testImage.inside { testImage.inside {
sh 'python3 create_dataset.py > output.txt'
sh 'ls -l' sh 'ls -l'
} }
sh 'python3 create_dataset.py > output.txt'
} }