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