blob: 65169056c333a46969fec184f0c66ae580eded08 [file] [log] [blame]
Leonardo Sandoval4cb535c2022-01-04 12:07:31 -06001#!/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
Paul Sokolovskyeccc75b2022-01-19 21:30:15 +030014image=trustedfirmware/ci-amd64-mbed-tls-ubuntu-host:focal${DOCKER_SUFFIX}
Leonardo Sandoval4cb535c2022-01-04 12:07:31 -060015docker build --pull --tag=$image .
16echo $image > .docker-tag