From 4efe478b5e16f6bddad76d458a86027d3fc66b6a Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 23 Feb 2019 14:52:08 -0800
Subject: [PATCH] Use correct image for CI

https://github.com/koalaman/shellcheck/issues/1069
---
 .gitlab-ci.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

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