mirror of
https://github.com/google/pebble.git
synced 2025-03-19 10:31:21 +00:00
8 lines
238 B
Bash
Executable file
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
|
|
|