x-ai-toolkit / entrypoint.sh
charbelmalo
update entrypoint.sh to clone the repository from the new URL
a99529a
raw
history blame contribute delete
341 Bytes
#!/bin/bash
# Clone the repository into /app
git clone https://github.com/charbelmalo/LinkMasterXS.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