fix(pipeline): don't fail if pull of cache image fails
This commit is contained in:
parent
93ad2e4e7b
commit
4e6caba4c3
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ services:
|
|||
before_script:
|
||||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
|
||||
- source environment
|
||||
- docker pull "$CI_REGISTRY_IMAGE"
|
||||
- docker pull "$CI_REGISTRY_IMAGE" || true
|
||||
- docker build --cache-from "$CI_REGISTRY_IMAGE" --pull --build-arg "BASE=$BASE" --build-arg "LDAP_PLUGIN_URL=$LDAP_PLUGIN_URL" -t "$CI_REGISTRY_IMAGE" .
|
||||
|
||||
build-main:
|
||||
|
|
Loading…
Reference in a new issue