docker inspect <image>
The output is in JSON format. You can use jq command line utility to parse and print only the desired keys.
jq
docker inspect <image> | jq -r '.[0].Author'
The above command will shows author name of the images.