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

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