projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
5737: Fix test so call counts are as expected
[arvados.git]
/
build
/
package-build-dockerfiles
/
build-all-build-containers.sh
1
#!/bin/bash
2
3
make
4
5
for target in `find -maxdepth 1 -type d |grep -v generated`; do
6
if [[ "$target" == "." ]]; then
7
continue
8
fi
9
target=${target#./}
10
echo $target
11
cd $target
12
docker build -t arvados/build:$target .
13
cd ..
14
done
15
16