File size: 341 Bytes
d1e996b
 
 
a99529a
d1e996b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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