Initial commit

Created from https://vercel.com/new
This commit is contained in:
CJackHwang
2026-01-21 15:14:49 +00:00
commit ea4de62fc3
21 changed files with 266477 additions and 0 deletions

11
Dockerfile Normal file
View File

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