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