[solved] Error: missing Docker image

Dear drone.io users,

Yesterday i deployed an drone instance and configured github with this. It almost work except the building phase. I’m getting stuck at: “Error: missing Docker image”

Here is my .drone.yml file:

pipeline: 
build:
	image: debian:latest 
	commands: 
		- echo hello world

I’m still wondering why this won’t work. Inside the server i pulled the alpine-lamp image, but it won’t work.

Anyone can help me with this?
Thanks in advance.

It appears your config isn’t valid (wrong indentation). This should fix it:

pipeline:
  build:
    image: debian:latest
    commands:
      - echo "Hello world!"

It’s solved now. Figured out that the dpkg function is outdated and used docker-compose to get it working.