pipeline { environment { } agent { dockerfile { dir 'automation' reuseNode true } } stages { stage('Package') { steps { sh 'pip install .' } } } }