Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在托管我自己的 Drone 实例。我.drone.yml的如下:
.drone.yml
build: image: node:latest commands: - npm install - npm run compile
但是,每当它运行时,它都会吐出错误:
Error: missing Docker image
没有任何上下文。在构建的早期可能会出现什么问题?
我有同样的问题,我解决了更新无人机版本。似乎 0.3 不支持构建:
您可以使用以下语法:
image: node:latest script: - npm install - npm run compile
我强烈建议使用最新版本。