blob: d54c8d9946e3d129c5c3796e500cc0ee1f52ea38 [file] [log] [blame]
Paul Sokolovskyca307612024-01-06 14:52:36 +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 Sokolovskybfa81ee2024-07-18 12:49:25 +030011cp ../eclair-linaro/ECLAIR_3.13.1-MC23P1-l64P_Setup.run .
Paul Sokolovsky27344462024-01-08 15:14:54 +030012cp -a ../bin .
Paul Sokolovskyca307612024-01-06 14:52:36 +030013
14image=${ECR}/misra:$tag
15docker build --pull --tag=$image .
16echo $image > .docker-tag