admin管理员组文章数量:1279244
I have a project that has the following error when building an image
COPY /data/docker/dockerbuildxxxx/contrib/docker/agent/debug-agent /bin/debug-agent not found
Part of the Dockerfile is as follows
...
COPY scripts/start.sh /
RUN chmod 755 /start.sh
COPY contrib/docker/agent/debug-agent /bin/debug-agent
CMD ["/start.sh"]
I executed the command docker build . -f contribe/docker/agent/Dockerfile -t test:latest
based on the following file structure
project/
├── scripts/
│ └── start.sh
├── contrib/
│ └── docker/
│ └── agent/
│ └── debug-agent
└ └───Dockerfile
It stands to reason that there should be nothing wrong, because the contents of the previous scripts directory can be copied normally
How can I debug to locate this problem and solve it?
本文标签: dockerHow to troubleshoot image building issuesStack Overflow
版权声明:本文标题:docker - How to troubleshoot image building issues - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741265747a2368429.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论