fix: [FL-126] 修复 GitHub Actions workflow 中 web 镜像构建的 build context

- 将 web 镜像构建的 context 从 ./web 改为 .(仓库根目录)
- 保持 dockerfile 为 ./web/Dockerfile
- 与 Dockerfile 的改动配套,确保 npm workspace 结构正确工作

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
chengkai3
2026-06-15 12:18:54 +08:00
parent 32e32eb114
commit 143893f586
+1 -1
View File
@@ -69,7 +69,7 @@ jobs:
- name: 构建并推送 Web 镜像
uses: docker/build-push-action@v7
with:
context: ./web
context: .
file: ./web/Dockerfile
pull: true
push: true