pipeline { agent any stages { stage ("Build Docker image") { steps { sh 'docker build -t ium_docker .' } } } }