x-ai-toolkit / entrypoint.sh
charbelmalo
sold
d1e996b
raw
history blame
339 Bytes
#!/bin/bash
# Clone the repository into /app
git clone https://github.com/yourusername/your-repo.git /app
# Change to the app directory
cd /app
# Install dependencies
pip install --no-cache-dir --upgrade pip
pip install --no-cache-dir -r requirements.txt
# Start the application using Gunicorn
exec gunicorn --bind 0.0.0.0:8080 app:app