bathyscaphe/scripts/build.sh
2020-08-07 12:24:24 +02:00

8 lines
163 B
Bash
Executable File

#!/bin/bash
# build processes
for path in build/Dockerfile-*; do
name=$(echo "$path" | cut -d'-' -f2)
docker build . -f "$path" -t "trandoshan.io/$name"
done