drone.io - Drone CI "Error: missing Docker image" -
i'm hosting own drone instance. .drone.yml
follows:
build: image: node:latest commands: - npm install - npm run compile
however, whenever runs spits out error:
error: missing docker image
with no context whatsoever. possibly going wrong in build?
i had same problem , resolved updating drone version. seems 0.3 doesn't support build:
you can use following syntax:
image: node:latest script: - npm install - npm run compile
i highly recommend use latest version.
Comments
Post a Comment