feat: split diarization UI into separate project folder

This commit is contained in:
2026-03-21 13:14:54 +01:00
commit 66d681279e
6 changed files with 97 additions and 0 deletions

7
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env sh
set -eu
API_BASE="${API_BASE:-http://diarization-api:8093}"
sed "s|__API_BASE__|${API_BASE}|g" /usr/share/nginx/html/index.html.template > /usr/share/nginx/html/index.html
exec nginx -g 'daemon off;'