From e183315f02a72169488a244c41d217ca51c12151 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 11 Jul 2021 17:50:46 +0100 Subject: [PATCH] Explicitly add bash Now might as well use the alpine container --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb447f4..56275de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,20 @@ terraform: image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: + - apk add --no-cache bash - ./scripts/terraform/terraform.sh init -backend=false script: - ./scripts/terraform/lint.sh ansible: - image: python:3.9-slim + image: python:3.9-alpine variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" cache: paths: - .cache/pip before_script: + - apk add --no-cache bash - ./scripts/ansible/setup.sh script: - ./scripts/ansible/lint.sh