This commit is contained in:
丹尼尔
2026-03-15 17:32:10 +08:00
parent 15c9e1772a
commit 19d8ad3721
7 changed files with 90 additions and 10 deletions

View File

@@ -49,7 +49,9 @@ RUN pip3 install --no-cache-dir --break-system-packages \
python3 -c "import fastapi; import uvicorn; import httpx; import websockets; import openai; print('all deps ok')"
COPY backend ./backend
# 仅复制模板,不复制 .env / .env.prod由 run-docker.sh --env-file .env.prod 注入)
COPY .env.example ./
COPY .env.prod.example ./
COPY start.sh ./
EXPOSE 3000 8000