The build makes sense!
(and also sounds like a sweet project)
Can you give a bit more info on the stderr
comment. Though I just tried with a quick example project, and just printing to stderr
does not make the compilation stop, IMHO it should be watching the error codes indeed. Where have you seen that writing to stderr
stops the compilation, have any more info about that? 
BTW, here’s my example Dockerfile
to test:
FROM resin/raspberrypi3-debian
RUN >&1 echo "this is an info on stdout"
RUN >&2 echo "this is an error on stderr"
CMD while : ; do echo "Idling"; sleep 60; done
This builds all the way just fine. 
x x x
That wish might be satisfied sooner than you think. The resin command line tool just recently got a new capability to locally build a container and deploy onto resin without involving the builders. Check the resin build
and resin deploy
in the latest resin-cli
version:
It’s brand new stuff, so still in testing, any feedback is appreciated.