summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: b04cbd4bdca3072ed1ce2926ae101d242f44fb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
pipeline {
    agent { dockerfile true }

    stages {
        stage('Build') {
            steps {
                sh coleslaw
            }
        }
    }
}