omissis/go-jsonschema

View on GitHub
scripts/lint-dockerfile.sh

Summary

Maintainability
Test Coverage
#!/bin/sh

set -e
set -o errexit -o nounset

find . \
  -type f \
  -name '*Dockerfile*' \
  -not -path './.git/*' \
  -exec hadolint {} \;