pipeline { agent { dockerfile { additionalBuildArgs "-t docker_image" } } stages { stage('Script') { steps { sh 'python3 ./registry.py' } } } }