mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-28 16:56:56 +00:00
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
roots='./server/server ./server/front ./pods/account'
|
|
|
|
for r in $roots
|
|
do
|
|
pushd $r
|
|
rushx docker:build
|
|
popd
|
|
done |