blob: 0cb95b03f4fef634af46974bb43c1c2caa83bc29 [file] [log] [blame]
Fathi Boudra240962e2020-05-20 22:04:21 +03001#!/bin/sh
2
3set -e
4
5trap cleanup_exit INT TERM EXIT
6
7cleanup_exit()
8{
9 rm -f *.list *.key
10}
11
12export LANG=C
13
14DISTRIBUTION=bionic
15ARCHITECTURE=amd64
16
17image=trustedfirmware/ci-${ARCHITECTURE}-hafnium:${DISTRIBUTION}
18docker build --pull --tag=$image .
19echo $image > .docker-tag