Foundation

This commit is contained in:
2025-03-28 08:23:48 -04:00
parent 88b0fa3148
commit d710450697
8 changed files with 64 additions and 0 deletions

12
app/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]

2
app/requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
Flask
mysql-connector-python

View File

View File

View File