I'm hosting my own Drone instance. My .drone.yml
is as follows:
build:
image: node:latest
commands:
- npm install
- npm run compile
However, whenever it runs it spits out the error:
Error: missing Docker image
with no context whatsoever. What could possibly be going wrong this early in the build?