The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/build.sh

11 lines
262 B

TAG=$1
if [[ -z $TAG ]]; then
TAG=$(git rev-parse HEAD)
echo "Defaulting to tag $TAG"
if [[ ! -z $(git status -s) ]]; then
echo "Note there are uncommitted changes"
fi
fi
DOCKER_BUILDKIT=1 docker build -t gcr.io/abacus-labs-dev/abacus-agent:$TAG .