I'm trying to get an idea of how long each step ta...
# general
a
I'm trying to get an idea of how long each step takes while building an image (doesn't necessarily have to be exact, even just me seeing it on the screen is enough), but even with
-ldebug
the output is buffered then dumped immediately, is there a way to do that?
I guess I could add a
RUN date
after each step/group of steps, but yeah...
e
Pants aside, try using BuildKit on a docker CLI run: https://docs.docker.com/build/buildkit/#getting-started that gives timings.
f
(with BuildKit enabled)
a
Buildkit worked, thanks