From bafc4a302a8caee5cad32eca6be3636b59e82bae Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Thu, 31 Oct 2019 21:18:28 +0100 Subject: [PATCH] Fix GitLab CI error Due to the incomplete entrypoint, bash doesn't want to execute scripts. The error message it provides says: ``` /bin/sh: /bin/sh: cannot execute binary file ``` The solution is rather trivial by making the entrypoint `["/bin/bash", "-c"]`. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34ffa9c..40a2ca0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: name: docker.io/renovate/renovate:19 entrypoint: - "/bin/bash" + - "-c" stages: - CI