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
|
name: docker.io/renovate/renovate:19
|
||||||
entrypoint:
|
entrypoint:
|
||||||
- "/bin/bash"
|
- "/bin/bash"
|
||||||
|
- "-c"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- CI
|
- CI
|
||||||
|
|
Reference in a new issue