mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 00:22:10 +03:00
10 lines
299 B
Bash
Executable File
10 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
docker_file="$1"
|
|
version="2.12.0"
|
|
wget --quiet --output-document /tmp/hadolint "https://github.com/hadolint/hadolint/releases/download/v${version}/hadolint-Linux-x86_64"
|
|
chmod +x /tmp/hadolint
|
|
/tmp/hadolint --verbose --ignore DL3018 --ignore SC1091 "${docker_file}"
|
|
|