Does docker build --no-cache <args>
pull new version of base image (e.g. --pull
) or it's only disabling caching of Dockerfile commands?
Background:
I have multistage build where one of the source images is local only. The --pull
option cannot be used in this case. Question is if --no-cache
will force the pulling of remote base images.