microblog2/Jenkinsfile

15 lines
176 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo building...'
sh 'docker run -p 5000:5000 microblog:latest'
}
}
}
}