dockerfile - Does Docker expose timing of builds? -
is possible configure docker output timing build of dockerfile? run medium sized dev team , collect statistics on average build times our developers' development containers. bonus points if can expose timing individual steps.
you use tool time
measure build times. e.g.
time docker build .
for individual build steps it's getting more difficult. @ run date
command after each step, add layer image. it's getting bit messy.
Comments
Post a Comment