pipeline { agent none stages { stage('Build') { agent { docker { image 'rust:alpine' } } steps { sh 'export' sh 'cargo --release build' sh 'ls -la' } } } }