I have a Docker image that was created roughly a year ago. The Dockerfile contains:
FROM docker:stable
How can I determine the actual version of the docker image that stable was referring to back when the image was built?
Edit: What I want to do, in a nutshell, is replace FROM docker:stable with FROM docker:X.Y.Z where X.Y.Z is the version tag that "stable" was pointing to a year ago when the image was originally built.