pipeline { agent { label 'docker && ubuntu' } stages { stage("build") { steps { sh 'echo "memes"' } } } }