mirror of
https://github.com/hadolint/hadolint-action.git
synced 2025-01-31 11:51:08 +01:00
fix: Fix problem matcher (#14)
This commit is contained in:
parent
88386d9893
commit
7e374b112f
2 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
FROM hadolint/hadolint:v1.17.5-alpine
|
FROM hadolint/hadolint:v1.17.5-alpine
|
||||||
|
|
||||||
COPY LICENSE README.md /
|
COPY LICENSE README.md problem-matcher.json /
|
||||||
COPY hadolint.sh /usr/local/bin/hadolint.sh
|
COPY hadolint.sh /usr/local/bin/hadolint.sh
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/local/bin/hadolint.sh" ]
|
ENTRYPOINT [ "/usr/local/bin/hadolint.sh" ]
|
||||||
|
|
11
hadolint.sh
11
hadolint.sh
|
@ -1,5 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo '::add-matcher::problem-matcher.json'
|
# The problem-matcher definition must be present in the repository
|
||||||
|
# checkout (outside the Docker container running hadolint). We create
|
||||||
|
# a temporary folder and copy problem-matcher.json to it and make it
|
||||||
|
# readable.
|
||||||
|
TMP_FOLDER=$(mktemp -d -p .)
|
||||||
|
cp /problem-matcher.json "${TMP_FOLDER}"
|
||||||
|
chmod -R a+rX "${TMP_FOLDER}"
|
||||||
|
trap "rm -rf \"${TMP_FOLDER}\"" EXIT
|
||||||
|
|
||||||
|
echo "::add-matcher::${TMP_FOLDER}/problem-matcher.json"
|
||||||
|
|
||||||
hadolint "$@"
|
hadolint "$@"
|
||||||
|
|
Loading…
Add table
Reference in a new issue