mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
10 lines
130 B
Bash
10 lines
130 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
roots='./server/server ./server/front ./pods/account'
|
||
|
|
||
|
for r in $roots
|
||
|
do
|
||
|
pushd $r
|
||
|
rushx docker:build
|
||
|
popd
|
||
|
done
|