pebble/third_party/nanopb/tests/docker_images/build_all.sh
2025-01-27 11:38:16 -08:00

8 lines
238 B
Bash
Executable file

#!/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