This commit is contained in:
iacore
2026-06-09 13:53:42 +08:00
parent 5fd9d1e09e
commit 66ca170631
3 changed files with 14 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.14-slim
WORKDIR /app
RUN pip install --no-cache-dir flask duckdb gunicorn
COPY server.py search.py termlib.duckdb ./
EXPOSE 8910
CMD ["gunicorn", "-b", "0.0.0.0:8910", "-w", "1", "--timeout", "30", "server:app"]