12 lines
215 B
Bash
12 lines
215 B
Bash
#!/usr/bin/env sh
|
|
|
|
chmod 755 /app/start.sh
|
|
chmod 755 /app/bot.py
|
|
|
|
python3 -m venv /app/venv
|
|
source /app/venv/bin/activate
|
|
|
|
pip3 install --upgrade pip
|
|
pip3 install --upgrade wheel
|
|
pip3 install --upgrade 'discord.py'
|