Does docker build --no-cache refresh updated remote base images or not? Documentation does not seem to specify.
docker build --no-cache will rebuild your whole image without reusing cached layers but it will not pull the newest base image from the remote repository. It will just use your local stored image.
docker build --no-cache