mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
8 lines
190 B
Bash
8 lines
190 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
dockerfile="$(dirname "$0")/Dockerfile.shellcheck"
|
||
|
docker build -f "$dockerfile" -t debiancis-shellcheck "$(dirname "$0")"/../
|
||
|
docker run --rm debiancis-shellcheck "$@"
|
||
|
|