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?