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