Update 'Jenkinsfile-Docker'

This commit is contained in:
Wojciech Mikołajski 2023-04-19 19:06:17 +02:00
parent 1b08652b8b
commit e279b1e745

View File

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