From 2b29995c2cabc12ad6a922b26222320d07df932c Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Thu, 31 Oct 2019 21:08:38 +0100 Subject: [PATCH] Fix entrypoint of the CI image Seems like gitlab has a hard time using the renovate image, because of the non-shell entrypoint --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c5733f7..a0e8729 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,6 @@ -image: docker.io/renovate/renovate:19 +image: + name: docker.io/renovate/renovate:19 + entrypoint: /bin/bash stages: - CI