Newer
Older
Casey Kuhlman
committed
#!/bin/bash
base=github.com/eris-ltd/eris-db
repo=$GOPATH/src/$base
branch=${ERISDB_BUILD_BRANCH:=dockerfixes}
Casey Kuhlman
committed
start=`pwd`
cd $repo
if [ "$DEV" != "true" ]; then
git checkout $branch
git pull origin
fi
Casey Kuhlman
committed
docker build -t eris/erisdb:0.10 -f DOCKER/Dockerfile .