feat:flow2api初版

This commit is contained in:
TheSmallHanCat
2025-11-24 18:27:05 +08:00
parent 23fd5211e5
commit 36cbcc0d8b
30 changed files with 6073 additions and 1 deletions

12
Dockerfile Normal file
View File

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