build: adds docker build script for development purposes.

This is just a convenience tool that enables anyone to pull in the code
and build it without installing to many dependancies (only Docker).

Signed-off-by: Chris Lapa <chris@lapa.com.au>
This commit is contained in:
Chris Lapa 2017-10-06 09:15:02 +11:00 committed by Thibault Saunier
parent 88bef66dfa
commit 90187fd8c1

7
dbuild.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
docker build -t gtk-sharp-debian9 .
docker run gtk-sharp-debian9 ${@}