From 36c6cf82bac69f674c313e47fdb1c55f8e9fe091 Mon Sep 17 00:00:00 2001 From: Eli Flanagan Date: Wed, 11 Dec 2019 09:47:46 -0500 Subject: [PATCH] Per the description (https://hub.docker.com/r/koalaman/shellcheck-alpine), one should prefer the main image as it is a statically compiled binary. --- GitLab-CI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitLab-CI.md b/GitLab-CI.md index e307e54..786c510 100644 --- a/GitLab-CI.md +++ b/GitLab-CI.md @@ -2,7 +2,7 @@ Simple test job for GitLab (analyse testScript.sh): ```yaml test: - image: koalaman/shellcheck-alpine:latest + image: koalaman/shellcheck:latest stage: test script: - shellcheck testScript.sh