Files
2025-10-18 22:26:16 +02:00

11 lines
163 B
Docker

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" ]