This commit is contained in:
jrhlh
2025-07-19 11:16:09 +08:00
parent da0b79a8ca
commit dc31e91d6e

View File

@ -40,7 +40,12 @@ jobs:
- name: 安装后端依赖
working-directory: back
run: python3.11 -m pip install --break-system-packages -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
run: |
python3.11 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
- name: 构建 Docker 镜像
run: docker-compose build
run: |
docker-compose build