Files
diarization-ui/docker-entrypoint.sh

8 lines
220 B
Bash
Raw Normal View History

#!/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;'