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"]`.
This commit is contained in:
parent
32a26d41d6
commit
bafc4a302a
1 changed files with 1 additions and 0 deletions
|
@ -2,6 +2,7 @@ image:
|
|||
name: docker.io/renovate/renovate:19
|
||||
entrypoint:
|
||||
- "/bin/bash"
|
||||
- "-c"
|
||||
|
||||
stages:
|
||||
- CI
|
||||
|
|
Reference in a new issue