更新 .gitea/workflows/ci.yml: 移除 Node.js 和 Python 依赖安装步骤,简化 CI 流程。

This commit is contained in:
2025-07-19 17:17:27 +08:00
parent c96a58204c
commit e323e2265f
3 changed files with 50 additions and 41 deletions

32
Dockerfile Normal file
View File

@ -0,0 +1,32 @@
FROM python:3.11-slim
# 安装 Node.js 和 supervisord
RUN apt-get update && \
apt-get install -y curl supervisor && \
curl -fsSL https://deb.nodesource.com/setup_21.x | bash - && \
apt-get install -y nodejs && \
apt-get clean
# 设置工作目录
WORKDIR /app
# 复制前端代码并安装依赖、构建
COPY platform/ ./platform/
WORKDIR /app/platform
RUN npm install && npm run build
# 安装 http-server
RUN npm install -g http-server
# 复制后端代码并安装依赖
WORKDIR /app/back
COPY back/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY back/ .
# supervisor 配置
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
WORKDIR /app
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]