microblog2/Jenkinsfile

21 lines
232 B
Groovy

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