Kelley Spoon | db98b95 | 2022-09-07 06:46:55 -0500 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | set -e | ||||
4 | |||||
5 | export LANG=C | ||||
6 | |||||
7 | tag=$(basename $PWD) | ||||
8 | |||||
9 | [ -z $ECR ] && echo "Error: ECR environment variable not set" && exit 1 | ||||
10 | |||||
11 | image=${ECR}/misra:$tag | ||||
12 | docker build --pull --tag=$image . | ||||
13 | echo $image > .docker-tag |