less than 5MB
It's closer to seven megs unpacked:
$ docker create --name foo --platform linux/arm64 taoyou/iperf3-alpine $ docker export foo | pv -b > /dev/null 6.97MiB
(pv is the
PipeViewertool.)
You might want to be aware that
this lineat the top of the taoyou container's Dockerfile switches the package repos over from the official Alpine ones to the Aliyun (a.k.a. Alibaba Cloud) ones. If the only reason for that is because he's inside the Great Firewall of China and can't build containers otherwise, fine, but do realize that this step allows the Chinese government to swap out GCC and so forth to suit their political and security needs.
I did learn one thing of value from this container: the setcap step is unnecessary. I got that idea from the mDNS repeater container while I was fighting with getting the container to start, and I ended up convincing myself it was part of why I eventually succeeded, but no, it's a complete irrelevancy.