Initial commit

This commit is contained in:
2025-10-18 22:26:16 +02:00
commit bc89d48a41
5 changed files with 225 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./irc-topic-bot.py" ]