pipeline { agent { docker { image 'vato.ddns.net:8083/python:buster' } } stages { stage('Build') { steps { dir(path: 'python') { sh 'python setup.py bdist_wheel' } } } } }