pipeline { agent { docker { image 'artempikulin/cmake-ubuntu' } } stages { stage('Build') { steps { echo 'Success' } } } }