pipeline { agent any stages { stage('build docker') { steps { sh 'docker build --no-cache -t jupyterlab-sguba .' } } } }