This commit is contained in:
k6Wz7SqNXTDm@tpaDX2%
2025-04-08 12:19:56 +02:00
parent f548db35ab
commit 094eeb7699
6 changed files with 141 additions and 0 deletions

8
flask-app/Dockerfile Normal file
View File

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