我正在尝试从 amazonlinux(基于 fedora)构建一个容器。
如果我构建镜像并进入容器,yum 命令可以正常工作。但是,如果我将 yum 命令放在 Dockerfile 中,它就不起作用了。似乎无法联系存储库
Dockerfile
FROM amazonlinux
RUN yum update -y
正在运行:sudo docker build。
Sending build context to Docker daemon 3.072kB
Step 1/2 : FROM amazonlinux
---> df7d0b6ddeee
Step 2/2 : RUN yum update -y
---> Running in 14e4e4bad5b1
Loaded plugins: ovl, priorities
结果,尝试了几次 https,最终:
...URLError: (28, 'Resolving timed out after 5516 milliseconds')
Trying other mirror...
The command '/bin/sh -c yum update -y' returned a non-zero code: 1
答案1
答案2
如果容器遇到 DNS 问题,请尝试使用主机网络,例如
docker build .... --network host ....