microblog/Jenkinsfile

10 lines
138 B
Groovy

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