microblog2/Jenkinsfile

14 lines
138 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'echo building...'
}
}
}
}