mirror of
https://github.com/rancher/os.git
synced 2025-06-22 13:07:04 +00:00
15 lines
258 B
Plaintext
15 lines
258 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
source scripts/build-common
|
||
|
|
||
|
>${BUILD}/tags
|
||
|
for i in scripts/extraimages/[0-9]*; do
|
||
|
tag=$(echo $i | cut -f2 -d-)
|
||
|
echo Building $tag
|
||
|
docker build -t rancher/$tag -f $i .
|
||
|
echo $tag >> ${BUILD}/tags
|
||
|
done
|