blob: 986c5df02a4923b791bdd9ae6900c033e8765f84 [file] [log] [blame]
Riku Voipiode5b1042019-10-23 15:19:00 +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=$(basename ${PWD} | cut -f1 -d '-')
15ARCHITECTURE=$(basename ${PWD} | cut -f2 -d '-')
16
Paul Sokolovskyeccc75b2022-01-19 21:30:15 +030017image=trustedfirmware/flexnet${DOCKER_SUFFIX}
Riku Voipiode5b1042019-10-23 15:19:00 +030018docker build --pull --tag=$image .
19echo $image > .docker-tag