Awesome
What is Alpine Linux?
Alpine Linux is a Linux distribution built around musl libc and BusyBox.
This image is based on the official Alpine Linux image. This makes Alpine Linux a great image base for utilities and even production applications. Read more about Alpine Linux here and you can see how their mantra fits in right at home with Docker images.
Included packages
To get you started, a set of packages have been integrated:
- curl
- wget
- ca-certificates
- bash
- tree
Usage
Use this as base for your own containers:
FROM 1science/alpine
RUN apk add <package_name>
CMD ["/bin/bash"]
or run it directly :
docker run -ti 1science/alpine
Build
This project is configured as an automated build in Dockerhub.
Each branch give the related image tag.
License
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.