You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider adding alternative variants that have all applets built as standalone binaries.(make_single_applets.sh).
This would be great for building Docker images FROM scratch. It would allow users to selectively consume only the necessary tools, such as nslookup (~65K), for specific purposes like e.g. a HEALTHCHECK.
For example: COPY --from=docker.io/busybox:musl-single /bin/nslookup /bin/
The text was updated successfully, but these errors were encountered:
For your use case, it would only really make sense to support the uclibc variants because they're the only ones that are actually statically compiled (and thus would run successfully inside FROM scratch or any arbitrary image), but that's still interesting IMO! 👍
Consider adding alternative variants that have all applets built as standalone binaries.(make_single_applets.sh).
This would be great for building Docker images
FROM scratch
. It would allow users to selectively consume only the necessary tools, such as nslookup (~65K), for specific purposes like e.g. aHEALTHCHECK
.For example:
COPY --from=docker.io/busybox:musl-single /bin/nslookup /bin/
The text was updated successfully, but these errors were encountered: