What is the difference between alpine docker image and busybox docker image?
The key difference between these is that older versions of the busybox image statically linked busybox against glibc (current versions dynamically link busybox against glibc due to use of libnss even in static configuration), whereas the alpine image dynamically links against musl libc. Going into the weighting factors used to choose between these in detail … Read more