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