--- pipeline-image: cache: key: $CI_COMMIT_REF_SLUG paths: - image-cache tags: - ffci stage: build image: name: gcr.io/kaniko-project/executor:debug entrypoint: [''] variables: GODEBUG: "http2client=0" # TODO: remove the override # currently rebase.sh depends on bash (not available in the kaniko image) # once we have a simpler rebase (which should be easy if the target branch ref is available as variable # we'll be able to rebase here as well hopefully before_script: [] script: - echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(echo -n ${CI_REGISTRY_USER}:${CI_REGISTRY_PASSWORD} | base64)\"}}}" > /kaniko/.docker/config.json - /kaniko/executor --cache=true --cache-dir=image-cache --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/pipeline.Dockerfile --label 'git-branch'=$CI_COMMIT_REF_SLUG --label 'git-tag=$CI_COMMIT_TAG' --destination $PIPELINE_IMAGE --log-timestamp=true