mirror of
https://github.com/JarodMica/ai-voice-cloning.git
synced 2025-06-07 06:05:52 -04:00
15 lines
284 B
Bash
Executable file
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
|