Skip to content
Permalink
lint
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 1ee434b Jul 13, 2016 History
0 contributors

Users who have contributed to this file

18 lines (10 sloc) 287 Bytes
node {
stage 'Checkout'
checkout scm
stage 'Base'
sh './build_image.sh'
stage 'Lint'
sh 'docker run -it --rm --privileged -v `pwd`:/root/ projectatomic/dockerfile-lint dockerfile_lint'
stage 'Tests'
sh '/usr/local/bin/bats tests/base.bats'
}