add things

This commit is contained in:
M1n-0
2025-05-13 17:09:24 +02:00
parent 2f8226075d
commit 11900c2842
10 changed files with 302 additions and 5 deletions

8
web/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /web
COPY . /web
RUN pip install flask flask_sqlalchemy pymysql authlib requests
CMD ["python", "app.py"]