This commit is contained in:
2026-01-15 09:06:47 +01:00
parent aa4b41d7a7
commit c468746108
11 changed files with 1961911 additions and 60 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM --platform=linux/amd64 python:3
ADD main.py .
ADD config.py .
ADD functions.py .
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "./main.py" ]