This question already has answers here:
Does Docker build --no-cache actually download and refresh the base image?
(4个答案)
2年前关闭。
docker
背景:
我有一个多阶段构建,其中源镜像之一仅是本地的。在这种情况下,不能使用
(4个答案)
2年前关闭。
docker
build --no-cache <args>
是拉取基础镜像的新版本(例如--pull
)还是仅禁用Dockerfile命令的缓存?背景:
我有一个多阶段构建,其中源镜像之一仅是本地的。在这种情况下,不能使用
--pull
选项。问题是--no-cache
是否将强制拉取远程基本图像。 最佳答案
不,--no-cache
不会导致基础图像的新拉动。
关于docker - “docker build --no-cache”是否会拉出新版本的基础图像? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52387389/
10-16 05:34