blob: f8049c501825685032115d07d4e4c82875e7b6f9 [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 .
Saheer Babu68c52ba2024-12-17 22:32:09 +000012cp ../eclair-linaro/aksusbd-10.12.1.tar.gz .
Paul Sokolovsky27344462024-01-08 15:14:54 +030013cp -a ../bin .
Paul Sokolovskyca307612024-01-06 14:52:36 +030014
15image=${ECR}/misra:$tag
16docker build --pull --tag=$image .
17echo $image > .docker-tag