initial commit

This commit is contained in:
2025-05-17 21:11:03 -05:00
commit 6fb15b6d5c
8 changed files with 60 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["flask", "run", "--host=0.0.0.0"]