Initial commit

This commit is contained in:
neoarz
2025-09-14 16:09:43 -04:00
commit 6583e7ccbb
16 changed files with 1986 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.12.9-slim-bookworm
WORKDIR /bot
COPY . /bot
RUN python -m pip install -r requirements.txt
ENTRYPOINT [ "python", "bot.py" ]