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