From afaf2222186bd7c625293a9a28f4c33baa510f1c Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 23 Feb 2019 14:35:17 -0800
Subject: [PATCH] Fix shellcheck image name

---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index aa71c5b..61865ac 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,6 +13,7 @@ before_script:
 lint-dockerfile:
   stage: test
   image: hadolint/hadolint:latest-debian
+  services:
   before_script:
     - mkdir ~/.config
     - cp ./.hadolint.yaml ~/.config/hadolint.yaml
@@ -21,7 +22,8 @@ lint-dockerfile:
 
 lint-shell-script:
   stage: test
-  image: shellcheck:latest
+  services:
+  image: koalaman/shellcheck:latest
   script:
     - find . -name "*.sh" -execdir shellcheck {} \;
 
-- 
GitLab