discord-bot-nlp/docker/entrypoint.sh
2025-07-09 13:03:05 +10:00

16 lines
306 B
Bash

#!/bin/bash
set -e
#source /venv/bin/activate
# Install Python deps
#if [ -f /app/requirements.txt ]
#then
# python3 -m pip install --break-system-packages -r /app/requirements.txt
#fi
#
#python3 -m spacy download en_core_web_sm
#exec python3 /app/bot.py "$@"
exec /venv/bin/python /app/bot.py "$@"