Merge pull request #386 from infosiftr/alpine

Add text to explain "alpine" variants!
This commit is contained in:
yosifkit 2015-11-13 11:01:44 -08:00
commit beca643211
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
## `%%REPO%%:alpine`
This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is highly recommended when final image size being as small as possible is desired. The only caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice.