This commit is contained in:
√(noham)²
2024-01-02 18:17:12 +01:00
parent ab5ac15006
commit d93b308a23
5 changed files with 29 additions and 3 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.10-alpine
COPY bot.py .
COPY requirements.txt .
COPY config.json .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u", "bot.py"]