This contains OpenCV3
, gstreamer
, and a bunch of dependencies thereof. To build a derived Resin app, use FROM biobright/resin-raspberrypi3-opencv3
in its Dockerfile.
Requires Ubuntu packages qemu
, qemu-system-arm
, qemu-user-binfmt
Running build.sh
will build the image and push it to its BioBright Dockerhub repo
To build, you'll need to install Docker and configure permissions to allow userspace docker operation (potentially insecure; can replace with sudo docker ...
):
sudo groupadd docker
sudo gpasswd -a ${USER} docker
sudo service docker restart
newgrp docker
build.sh
stuff enabled with environmental variable FIX_BINFMT
tells your machine to use QEMU to interpret ARMv7l binaries. This can also be accomplished with resin.io's patched QEMU.