blob: 6152e1f655620ed3b20b5802d117a42e20621bcc [file] [log] [blame]
#!/bin/sh
set -e
export LANG=C
tag=$(basename $PWD)
[ -z $ECR ] && echo "Error: ECR environment variable not set" && exit 1
image=${ECR}:$tag
docker build --pull --tag=$image .
echo $image > .docker-tag