9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
python3 -m venv /app/venv
|
||
|
source /app/venv/bin/activate
|
||
|
|
||
|
pip3 install --upgrade pip
|
||
|
pip3 install --upgrade wheel
|
||
|
pip3 install --upgrade 'discord.py'
|