This fine question addresses how to perform a docker build
with the stdout from RUN
commands visible.
On the other hand, I have not been able to find a way to review the stdout from RUN
commands from a standard docker build
that has just run. Particularly if it's successful, since all that's left in the terminal is a list of the Dockerfile
commands that were run. I find it really uncomfortable when I'm used to just "scrolling up" to review how things went.
Do I really need to delete the cache and re-run the 45 minute / 80GB process (in my case) with --progress=plain
to not lose the output?