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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -