I am using the standard docker command:
docker build -t XXX -f Dockerfile .
to build my container. I would like to know if there is a way to get some more detailed logs about which files are being copied into the image.
Alternatively, is there a way from the DockerFile to list the files in a directory to the stdout (commandline from where docker command was run or log to a file).
Unfortunately my container dockerfile is crashing at a later point so I cannot examine the image as it is not being created.