1
0
mirror of https://github.com/ViViDboarder/shoestrap.git synced 2025-01-07 08:07:41 +00:00
shoestrap/assets/default/bin/hadolint

12 lines
191 B
Bash
Executable File

#! /bin/bash
# Runs hadolint from a Docker image
version=v1.17.2
docker run -i --rm \
-v "$(pwd):/data:ro" \
-w /data \
hadolint/hadolint:${version}-debian \
hadolint "$@"