使用 eb CLI 时

eb init
eb create

我收到一个错误:
ERROR: [Instance: i-003165df12360a5c4] Command failed on instance. Return code: 1 Output: Dockerfile and Dockerrun.aws.json are both missing, abort deployment.

似乎发送到 S3 的 ZIP 文件确实只包含 README.md 文件。但本地文件夹确实包含 Dockerfile 和
eb local run

似乎工作正常。

有任何想法吗?

最佳答案

答案 :这是因为未提交 Dockerfile。 (默认情况下,EB CLI 部署 latest commit in the current branch )。

我遇到了同样的问题,并在阅读您的问题和答案后找到了原因。您可能有一个只有自述文件的新 git 存储库。删除 .git 目录后,EB CLI 不再将您的目录视为 git 存储库。

关于docker - 弹性 beantalk 找不到 Dockerfile,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43472592/

10-11 17:37