Add files via upload

This commit is contained in:
AAsige
2026-07-30 20:56:50 +08:00
committed by GitHub
commit 65abbe4aa6
18 changed files with 1869 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.14.6-slim-bookworm
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV HOST=0.0.0.0
ENV PORT=8765
WORKDIR /app
COPY app ./app
COPY data ./data
EXPOSE 8765
CMD ["python", "-m", "app.server", "--host", "0.0.0.0", "--port", "8765"]