tenfourfox/testing/docker/tester-device/build.sh

23 lines
306 B
Bash
Raw Normal View History

2017-04-19 07:56:45 +00:00
#! /bin/bash -ve
while getopts "t:g:" arg; do
case $arg in
t)
TAG=$OPTARG
;;
g)
GAIA_TESTVARS=$OPTARG
;;
esac
done
pushd $(dirname $0)
test $TAG
test -f "$GAIA_TESTVARS"
cp $GAIA_TESTVARS data/gaia_testvars.json
docker build -t $TAG .
rm -f data/gaia_testvars.json