8491: move files from arvados-dev into their new places
[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