7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#! /bin/bash
|
|
set -ex
|
|
|
|
VERSION=v2.12.0
|
|
wget -q -L -O /usr/bin/hadolint "https://github.com/hadolint/hadolint/releases/download/${VERSION}/hadolint-Linux-x86_64"
|
|
chmod +x /usr/bin/hadolint
|