10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
node {
|
|
sh "chmod +x create_dataset.py"
|
|
checkout scm
|
|
def testImage = docker.build("test-image")
|
|
testImage.inside {
|
|
|
|
sh 'ls -l'
|
|
sh 'python3 create_dataset.py'
|
|
}
|
|
} |