build_all.sh 238 B

12345678
  1. #!/bin/bash -e
  2. # Run all targets
  3. for file in `ls */Dockerfile`
  4. do echo -e "\n\n\n---------------------------------------- Building image for" $file " -------------------------------------------\n\n\n"
  5. docker build $(dirname $file)
  6. done