pipeline { agent any stages { stage('Hello') { steps { echo "hello wordl" script { img = 'python:latest' docker.image("${img}").run('-d') } } } } }