blob: c0f93c896bf23ec752e6630211f1c9ee5dc2b104 [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
Benjamin Copeland6bf4fee2020-08-20 15:19:33 +010017cp -a ../setup-sshd .
18
Fathi Boudra240962e2020-05-20 22:04:21 +030019image=trustedfirmware/ci-${ARCHITECTURE}-hafnium:${DISTRIBUTION}
20docker build --pull --tag=$image .
21echo $image > .docker-tag