I have a CI Runner that automatically builds a docker image from a Dockerfile. My docker image is based on another docker image. So the beginning of my Dockerfile looks like this:
FROM linktoimage/imagename:latest
Does docker check during the build process if my local version of imagename
is still the latest (similar to docker pull? Because i noticed that my ci runner shows sn older version of imagename
if i run docker images
on it