pebble/third_party/nanopb/tests/docker_images/build_all.sh

9 lines
238 B
Bash
Raw Permalink Normal View History

#!/bin/bash -e
# Run all targets
for file in `ls */Dockerfile`
do echo -e "\n\n\n---------------------------------------- Building image for" $file " -------------------------------------------\n\n\n"
docker build $(dirname $file)
done