Docker image for Travis CI builds containing a complete build environment including git, docker, python, node and dotnet
See http://jpetazzo.github.io/2015/09/03/do-not-use-docker-in-docker-for-ci/
Use the host docker.sock to run builds in this image if they themselves run docker, e.g:
docker run -v /var/run/docker.sock:/var/run/docker.sock linn/linn-api-build-image:latest your_build
To run the build on an apple ARM chip append --platform linux/amd64
to the build parameters
e.g.
docker build -t linn-api-build-image-local --platform linux/amd64 .