blog/Jenkinsfile
Tom Willemse 4333a9ec65 Add Dockerfile and Jenkinsfile
This is the first step in improving my coleslaw builds. For this commit the only
thing that it does is build the project into a staging directory.
2020-12-27 17:12:46 -08:00

11 lines
160 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh coleslaw
}
}
}
}