2023-04-19 18:59:56 +02:00
|
|
|
node {
|
2023-04-19 19:38:34 +02:00
|
|
|
sh "chmod +x create_dataset.py"
|
2023-04-19 18:59:56 +02:00
|
|
|
checkout scm
|
|
|
|
def testImage = docker.build("test-image")
|
|
|
|
testImage.inside {
|
2023-04-19 19:12:18 +02:00
|
|
|
|
2023-04-19 19:06:17 +02:00
|
|
|
sh 'ls -l'
|
2023-04-19 19:45:01 +02:00
|
|
|
sh 'python3 create_dataset.py'
|
2023-04-19 18:53:55 +02:00
|
|
|
}
|
2023-04-19 18:03:00 +02:00
|
|
|
}
|