mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-15 07:51:32 +00:00
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
roots='./server/server ./server/front ./pods/account ./pods/backup'
|
|
# ./products/tracker is temporary disabled
|
|
|
|
for r in $roots
|
|
do
|
|
pushd $r
|
|
rushx docker:build
|
|
popd
|
|
done |