mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a532ff8cc3
Fixes: #27045 Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
10 lines
175 B
Bash
Executable file
10 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
|
|
|
set -x
|
|
./generate.sh
|
|
for d in */; do
|
|
docker build -t "dockercore/builder-deb:$(basename "$d")" "$d"
|
|
done
|