1
0

初始化提交

This commit is contained in:
2025-02-09 22:58:24 +08:00
commit 745a433842
15 changed files with 3122 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.12-alpine
RUN pip install --upgrade pip \
&& pip install --no-cache-dir flask waitress zhipuai \
&& mkdir -p /app
WORKDIR /app
COPY ai-server.py /app/ai-server.py
EXPOSE 6721
CMD ["python", "/app/ai-server.py"]