A minimal, busybox-like container based on Alpine Linux, that contains apk package manager to ease installation of extra packages and help you build smaller development containers.
This is possible thanks to the work from uggedal on packaging Alpine Linux for Docker.
Use this as base for your own containers:
FROM mini/base
RUN apk-install <packagename>
CMD ["/bin/sh"]
And install or extend with packages as you please.
You can find a list of packages you can install on Alpine Linux Packages section.
To get you started, a set of packages have been integrated:
- curl
- wget
- ca-certificates
Without those, installation of remote packages over HTTPS connections was not possible.
Work on this was made possible thanks to AREA 17.
All the code contained in this repository, unless explicitly stated, is licensed under ISC license.
A copy of the license can be found inside the LICENSE file.