blob: d54c8d9946e3d129c5c3796e500cc0ee1f52ea38 [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
Paul Sokolovsky72bffce2024-07-20 00:25:38 +030011cp ../eclair-linaro/ECLAIR_3.13.1-MC23P1-l64P_Setup.run .
Paul Sokolovskybe13ab52024-01-08 13:54:46 +030012cp -a ../bin .
13
14image=${ECR}/misra:$tag
15docker build --pull --tag=$image .
16echo $image > .docker-tag