face-analysis / docker-entrypoint.sh
asterioskryos's picture
Upload docker-entrypoint.sh with huggingface_hub
18d335e verified
Raw
History Blame Contribute Delete
148 Bytes
#!/bin/bash
set -e
# Start the FastAPI server (serves both API and static frontend)
cd /app
exec uvicorn server.app:app --host 0.0.0.0 --port 7860