pipeline { agent { docker { image 'ubuntu:16.04' } } stages { stage('Test') { steps { sh 'ls' sh 'pwd' } } } }