pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
stage('Build') {
sh 'sudo docker build -t microblog:latest .'