microblog2/Jenkinsfile

12 lines
179 B
Groovy

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