pipeline {
  agent {
    dockerfile true
  }

	stages{
		stage("Hello"){
			steps{
				echo "Hello from Jenkins"
			}
		}
	}
}
