ai-voice-cloning-mrq/setup-docker.sh
Jarod Mica 3a324401e4
Update setup-docker.sh
Same update to the docker script to resolve submodule mismatches
2024-06-10 13:27:05 -07:00

15 lines
284 B
Bash
Executable file

#!/bin/bash
function main() {
if [ ! -f modules/tortoise-tts/README.md ]; then
git submodule init
git submodule update
fi
docker build \
--build-arg UID=$(id -u) \
--build-arg GID=$(id -g) \
-t ai-voice-cloning \
.
}
main