From 90187fd8c1997cac6122965f5bbf5cae79d1e02c Mon Sep 17 00:00:00 2001 From: Chris Lapa Date: Fri, 6 Oct 2017 09:15:02 +1100 Subject: [PATCH] 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 --- dbuild.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 dbuild.sh diff --git a/dbuild.sh b/dbuild.sh new file mode 100755 index 000000000..8ceabf533 --- /dev/null +++ b/dbuild.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +set -e + +docker build -t gtk-sharp-debian9 . + +docker run gtk-sharp-debian9 ${@}