mirror of
https://github.com/creekorful/bathyscaphe
synced 2024-11-19 15:25:44 +00:00
8 lines
163 B
Bash
Executable File
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
|