I am creating a docker image based on Centos:
FROM centos:7
RUN yum install <package>
Is there a way I can get a listing of the files/directories installed in the image, beyond the initial centos starting image?
I am creating a docker image based on Centos:
FROM centos:7
RUN yum install <package>
Is there a way I can get a listing of the files/directories installed in the image, beyond the initial centos starting image?
I assume you will find the answer here: How to see docker image contents
docker image history --no-trunc image_name > image_history
Should give you the history. Be aware to take the correct image. The RUN
should create a new image file.