feat(deploy): 重构部署方案并添加 nginx 代理

- 新增 nginx 服务作为前端和后端的代理
- 重新配置前端和后端服务,不再直接暴露端口
- 更新前端 Dockerfile,简化为静态文件服务器- 在 MarkdownViewer 组件中添加 ExternalLink 图标
This commit is contained in:
黄建武
2025-05-06 13:56:43 +08:00
parent bab61d8462
commit be4c3313d4
6 changed files with 58 additions and 25 deletions

View File

@@ -13,6 +13,9 @@ RUN rm -f /etc/apt/sources.list && \
# 确保 PATH 中包含 ffmpeg 路径(可选)
ENV PATH="/usr/bin:${PATH}"
# 设置 Hugging Face 镜像源环境变量
ENV HF_ENDPOINT=https://hf-mirror.com
WORKDIR /app
COPY ./backend /app
RUN pip install --no-cache-dir -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt