Подготовка к запуску в docker

This commit is contained in:
2025-08-21 11:55:01 +07:00
parent 044134041b
commit 80bc3bde6e
9 changed files with 109 additions and 13 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3
WORKDIR /usr/src/moderation-bot
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "src/test.py" ]