This is a raspberry pi compatible alpine DockerFile.
To build it :
docker build --build-arg alpine_version=$alpine_version -t dtroncy/rpi-alpine .
$alpine_version is version of alpine you want to build.
To run it (with image on docker hub) :
docker run -ti --name alpine dtroncy/rpi-alpine
Description of parameters :
- -t : Allocate a pseudo-tty
- -i : Keep STDIN open even if not attached
- --name alpine : Container's name
- dtroncy/rpi-alpine : Image's name