mirror of
https://github.com/google/pebble.git
synced 2025-11-16 20:40:55 -05:00
9 lines
238 B
Bash
Executable File
9 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
|
|
|