bruder-py/docker-entrypoint.sh

9 lines
149 B
Bash
Raw Normal View History

2022-09-20 01:44:23 +02:00
#!/bin/bash
echo "Installing requirements..."
pip install -r /code/requirements.txt
echo "Starting discord bot..."
2022-09-24 22:34:00 +02:00
python -u /code/src/main.py $1
2022-09-20 01:44:23 +02:00