From eaa4b2f721cfe066095d3d6b23bb24c0666663c2 Mon Sep 17 00:00:00 2001 From: data-infra <825485697@qq.com> Date: Tue, 24 Sep 2024 08:55:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A720240901=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/docker/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install/docker/README.md b/install/docker/README.md index f4ece0e1..32332a3a 100644 --- a/install/docker/README.md +++ b/install/docker/README.md @@ -134,7 +134,13 @@ yarn: npm install yarn -g ``` ```sh # 初始化安装可能会遇到依赖包的版本选择,直接回车默认即可 -cd myapp/vision && yarn && yarn build +如果本地环境有偏差,可以在容器内进行构建,参考entrypoint.sh中的构建命令 +# 构建前端主体 +cd /home/myapp/myapp/frontend && npm install && npm run build +# 构建机器学习pipeline +cd /home/myapp/myapp/vision && npm install && npm run build +# 构建数据ETL pipeline +cd /home/myapp/myapp/visionPlus && yarn && npm run build ``` 输出路径:`myapp/static/appbuilder` #### 纯前端开发(本地)