无法部署 Dockerfile: path/to/Dockerfile': ADD 失败 temp/path/to/app :: 没有这样的文件或目录



我正在尝试运行一个Dockerfile,这是我在Ubuntu 18.0.4机器上使用Webstorm从 https://github.com/aws-samples/ecs-refarch-cloudformation 克隆的。当我尝试运行 ./services/product-service/src/Dockerfile 时,我收到如下错误。

Step 5/6 : ADD app /app
Error: ResponseItem.ErrorDetail[code=<null>,message=ADD failed: stat /var/lib/docker/tmp/docker-builder865139225/app: no such file or directory]
Failed to deploy '<unknown> Dockerfile: services/product-service/src/Dockerfile': ADD failed: stat /var/lib/docker/tmp/docker-builder865139225/app: no such file or directory

下面给出的是 Dockerfile

# Start from a small base
FROM scratch
# Our application requires no privileges
# so run it with a non-root user
ADD users /etc/passwd
USER nobody
# Our application runs on port 8001
# so allow hosts to bind to that port
EXPOSE 8001
# Add our application binary
ADD app /app
# Run our application!
ENTRYPOINT [ "/app" ]

免責聲明:

我尝试了一些给定的修复,

这里:添加失败:构建 docker 镜像时没有这样的文件/目录

这里 : https://github.com/goreleaser/goreleaser/issues/694

这里 : https://github.com/docker/for-win/issues/1859

其中一些与我的案件无关。

我刚刚在 ../src 中创建了一个目录app目录,并在 Dockerfile 中注释掉USER nobody行,它似乎工作正常。

相关内容

  • 没有找到相关文章

最新更新