mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
9 lines
238 B
Bash
9 lines
238 B
Bash
|
#!/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
|
||
|
|