blob: 6152e1f655620ed3b20b5802d117a42e20621bcc [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
Kelley Spoonb4e11852023-03-11 07:31:51 -060011image=${ECR}:$tag
Kelley Spoondb98b952022-09-07 06:46:55 -050012docker build --pull --tag=$image .
13echo $image > .docker-tag