blob: 2865b830adf848f6f61a34a9c96e41249123c6bf [file] [log] [blame]
pipeline {
agent none
stages {
stage('Example Build') {
agent { docker "rest-test" }
steps {
sh 'ls -ltr'
}
}
}
}