Docker Image return invalid with clone command

I am trying to clone submodules and also calling docker image in the same pipeline script.
once trying it is resulting with image error.

below is my pipeline script.

pipeline:
fetch:
clone:
git:
submodule_override:
hello-world: https://github.com/octocat/hello-world.git
build:
image: containers.xyz.com/operations/citestchef:master
privileged: true
pull: true
commands:
- env
- ls -l

error in drone “Invalid or missing image”

can someone give better idea how to correct this issue please?

Please see http://docs.drone.io/error-invalid-or-missing-image/

In addition, your configuration for customizing the clone step looks incorrect. Please see http://docs.drone.io/cloning/ for working examples.

Next post …