Files
huly-platform/common/scripts/build_docker.sh
T
2022-02-16 10:02:31 +01:00

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