microblog2/Jenkinsfile

21 lines
216 B
Groovy

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