16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
|
pipeline {
|
||
|
agent {
|
||
|
docker {
|
||
|
image 's478841-create-dataset'
|
||
|
}
|
||
|
}
|
||
|
stages {
|
||
|
stage ('Show stats') {
|
||
|
steps {
|
||
|
sh 'ls -al'
|
||
|
sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|