This commit is contained in:
2024-09-23 01:28:03 +02:00
parent 672651c08c
commit 82f0f6f511
10 changed files with 284 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.12-alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "master-bot"]