blob: 6ea061409dc98490efba30fb86e404105e43a5a6 [file] [log] [blame]
Paul Sokolovskybe13ab52024-01-08 13:54:46 +03001#!/bin/sh
2
3set -e
4
5export LANG=C
6
7tag=$(basename $PWD)
8
9[ -z $ECR ] && echo "Error: ECR environment variable not set" && exit 1
10
11cp ../eclair-linaro/ECLAIR_3.12.0-MC23P1-l64P_Setup.run .
12cp -a ../bin .
13
14image=${ECR}/misra:$tag
15docker build --pull --tag=$image .
16echo $image > .docker-tag