Port over local repo

This commit is contained in:
j 2025-07-09 13:03:05 +10:00
commit 676b6aa8ea
21 changed files with 1121 additions and 0 deletions

16
docker/entrypoint.sh Normal file
View file

@ -0,0 +1,16 @@
#!/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 "$@"