mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
Use Docker to pull kubeconform
Signed-off-by: Brett Logan <lindluni@github.com>
This commit is contained in:
parent
148a5f5a30
commit
03a3c29f60
2 changed files with 11 additions and 16 deletions
16
Dockerfile
16
Dockerfile
|
@ -14,6 +14,7 @@ FROM cljkondo/clj-kondo:2023.01.12-alpine as clj-kondo
|
||||||
FROM dotenvlinter/dotenv-linter:3.3.0 as dotenv-linter
|
FROM dotenvlinter/dotenv-linter:3.3.0 as dotenv-linter
|
||||||
FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format
|
FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format
|
||||||
FROM ghcr.io/terraform-linters/tflint-bundle:v0.44.1.0 as tflint
|
FROM ghcr.io/terraform-linters/tflint-bundle:v0.44.1.0 as tflint
|
||||||
|
FROM ghcr.io/yannh/kubeconform:v0.5.0 as kubeconfrm
|
||||||
FROM golangci/golangci-lint:v1.50.1 as golangci-lint
|
FROM golangci/golangci-lint:v1.50.1 as golangci-lint
|
||||||
FROM hadolint/hadolint:latest-alpine as dockerfile-lint
|
FROM hadolint/hadolint:latest-alpine as dockerfile-lint
|
||||||
FROM hashicorp/terraform:1.3.7 as terraform
|
FROM hashicorp/terraform:1.3.7 as terraform
|
||||||
|
@ -182,6 +183,11 @@ COPY --from=scalafmt /bin/scalafmt /usr/bin/
|
||||||
######################
|
######################
|
||||||
COPY --from=actionlint /usr/local/bin/actionlint /usr/bin/
|
COPY --from=actionlint /usr/local/bin/actionlint /usr/bin/
|
||||||
|
|
||||||
|
######################
|
||||||
|
# Install kubeconform #
|
||||||
|
######################
|
||||||
|
COPY --from=kubeconfrm /kubeconform /usr/bin/
|
||||||
|
|
||||||
#################
|
#################
|
||||||
# Install Lintr #
|
# Install Lintr #
|
||||||
#################
|
#################
|
||||||
|
@ -192,11 +198,11 @@ RUN /install-lintr.sh && rm -rf /install-lintr.sh
|
||||||
# Store the key here because the above host is sometimes down, and breaks our builds
|
# Store the key here because the above host is sometimes down, and breaks our builds
|
||||||
COPY dependencies/sgerrand.rsa.pub /etc/apk/keys/sgerrand.rsa.pub
|
COPY dependencies/sgerrand.rsa.pub /etc/apk/keys/sgerrand.rsa.pub
|
||||||
|
|
||||||
###################
|
##################
|
||||||
# Install Kubeconform #
|
# Install ktlint #
|
||||||
###################
|
##################
|
||||||
COPY scripts/install-kubeval.sh /
|
COPY scripts/install-ktlint.sh /
|
||||||
RUN --mount=type=secret,id=GITHUB_TOKEN /install-kubeval.sh && rm -rf /install-kubeval.sh
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-ktlint.sh && rm -rf /install-ktlint.sh
|
||||||
|
|
||||||
#################################################
|
#################################################
|
||||||
# Install Raku and additional Edge dependencies #
|
# Install Raku and additional Edge dependencies #
|
||||||
|
|
|
@ -2,17 +2,6 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
url=$(curl -s \
|
|
||||||
-H "Accept: application/vnd.github+json" \
|
|
||||||
-H "Authorization: Bearer $(cat /run/secrets/GITHUB_TOKEN)" \
|
|
||||||
"https://api.github.com/repos/instrumenta/kubeval/releases/tags/${KUBEVAL_VERSION}" |
|
|
||||||
jq -r '.assets | .[] | select(.name | contains("linux-amd")) | .url')
|
|
||||||
curl --retry 5 --retry-delay 5 -sL \
|
|
||||||
-H "Accept: application/octet-stream" \
|
|
||||||
-H "Authorization: Bearer $(cat /run/secrets/GITHUB_TOKEN)" \
|
|
||||||
"${url}" | tar -xz
|
|
||||||
mv kubeval /usr/local/bin
|
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# Install ktlint #
|
# Install ktlint #
|
||||||
##################
|
##################
|
Loading…
Reference in a new issue