Alpine Linux with /usr/bin/qemu-arm-static
338
docker pull armhf/alpine:latest
CID=$(docker create --name alpine armhf/alpine:latest)
docker cp /usr/bin/qemu-arm-static $CID:/usr/bin/qemu-arm-static
docker commit $CID foertel/alpine:latest
docker push foertel/alpine:latest
apt-get update && apt-get install -y --no-install-recommends \
qemu \
qemu-user-static \
binfmt-support
update-binfmts --enable qemu-arm
update-binfmts --display qemu-arm
$ docker run --rm -it foertel/alpine:latest uname -a
Linux ecc0fbdbd6dc 4.4.0-63-generic #84-Ubuntu SMP Wed Feb 1 17:20:32 UTC 2017 armv7l Linux
to ubergarm for ubergarm/armhf-ubuntu
Content type
Image
Digest
Size
3 MB
Last updated
over 9 years ago
docker pull foertel/alpine