pipeline { agent { label 'ml-builder-live-ci' } options { withFolderProperties() } stages { stage('Build ML Base Image') { steps { script { def img = docker.build("${env.PUSH_REGISTRY}/ml_base:latest", "-f MLBaseDockerfile .") img.push() } } } } }