ium_470607/lab2/Jenkinsfile_dataset_stats

11 lines
247 B
Plaintext
Raw Normal View History

2021-04-11 18:41:00 +02:00
node {
2021-04-11 18:46:58 +02:00
docker.image('kubakonieczny/ium:v1.0').withRun('-t') {
docker.image('kubakonieczny/ium:v1.0').inside {
stage('Test') {
sh 'cat /etc/issue'
sh 'ls -lah'
}
2021-03-28 17:41:49 +02:00
}
}
}