CoreReader / start.sh
shreyas-joshi's picture
Fix CMD: replace complex inline shell with start.sh script
4cb1a72
raw
history blame contribute delete
127 Bytes
#!/bin/sh
set -e
PORT="${PORT:-7860}"
uv run python download_models.py
uv run uvicorn server:app --host 0.0.0.0 --port "$PORT"