Fix builds on older Docker

The Fedora image doesn't have an entrypoint defined, and while bleeding
edge Docker implements a fallback, older versions don't.
This commit is contained in:
Simon Richter 2021-07-02 15:49:57 +02:00 committed by Ian McInerney
parent 8fdfc0e63d
commit 894c279e15
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ stages:
- report
default:
image: registry.gitlab.com/kicad/kicad-ci/source_containers/master/fedora:34
image:
name: registry.gitlab.com/kicad/kicad-ci/source_containers/master/fedora:34
entrypoint: ["/bin/sh", "-c"]
##########################################################################