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