Leonardo Sandoval | 4cb535c | 2022-01-04 12:07:31 -0600 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
3 | set -e | ||||
4 | |||||
5 | trap cleanup_exit INT TERM EXIT | ||||
6 | |||||
7 | cleanup_exit() | ||||
8 | { | ||||
9 | rm -f *.list *.key | ||||
10 | } | ||||
11 | |||||
12 | export LANG=C | ||||
13 | |||||
14 | image=trustedfirmware/ci-amd64-mbed-tls-ubuntu-host:focal | ||||
15 | docker build --pull --tag=$image . | ||||
16 | echo $image > .docker-tag |