Weed-Detection-App / entrypoint.sh
Timmyafolami's picture
Update entrypoint.sh
40f38c5 verified
raw
history blame contribute delete
181 Bytes
#!/bin/sh
# Exit immediately if a command exits with a non-zero status
set -e
# Step 4: Run FastAPI App
echo "Starting FastAPI app..."
uvicorn main:app --host 0.0.0.0 --port 7860