**Problem description** Here's a typical build I run: ``` $ time docker buildx build . [+] Building 1.0s (8/8) FINISHED ... real 0m3.358s user 0m0.559s sys 0m0.159s ``` Note that the buildx CLI reports that the build took 1.0s. But wall clock time is 3.358s. **Additional info** My hunch is that the additional 2.3s is overhead connecting to the builder, which isn't captured by the buildx output. You could imagine a few different solutions here, including: - Adding a "Connecting" log line to the buildx output, so it reports time to connect - Changing the "Building" log line to include the full build wall clock time
Problem description
Here's a typical build I run:
Note that the buildx CLI reports that the build took 1.0s. But wall clock time is 3.358s.
Additional info
My hunch is that the additional 2.3s is overhead connecting to the builder, which isn't captured by the buildx output.
You could imagine a few different solutions here, including: