Simply armhf-ubuntu:trusty with /usr/bin/qemu-arm-static already in place for easy Dockerfile builds
636
docker pull ioft/armhf-ubuntu:trusty
CID=$(docker create --name trusty ioft/armhf-ubuntu:trusty)
docker cp /usr/bin/qemu-arm-static $CID:/usr/bin/qemu-arm-static
docker commit $CID ubergarm/armhf-ubuntu:trusty
docker push ubergarm/armhf-ubuntu:trusty
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 ubergarm/armhf-ubuntu:trusty uname -a
Linux 82055a9734a5 3.13.0-58-generic #97-Ubuntu SMP Wed Jul 8 02:56:15 UTC 2015 armv7l armv7l armv7l GNU/Linux
Content type
Image
Digest
sha256:f22f56110…
Size
79.4 MB
Last updated
almost 11 years ago
docker pull ubergarm/armhf-ubuntu:trusty