I have a docker image sitting in Artifactory. How to check what is "base image version is"?
e.g. My dockerimage in artifactory created based on docker file like this
FROM test-image:v1.0.0
...
Now after the build, how can i find that this image is built on v1.0.0
I tried doing docker inspect <imagename> it didn't help me to find the version of test-image.
Is there anyway I can find this version?