We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e70dda commit eaa4b2fCopy full SHA for eaa4b2f
install/docker/README.md
@@ -134,7 +134,13 @@ yarn: npm install yarn -g
134
```
135
```sh
136
# 初始化安装可能会遇到依赖包的版本选择,直接回车默认即可
137
-cd myapp/vision && yarn && yarn build
+如果本地环境有偏差,可以在容器内进行构建,参考entrypoint.sh中的构建命令
138
+# 构建前端主体
139
+cd /home/myapp/myapp/frontend && npm install && npm run build
140
+# 构建机器学习pipeline
141
+cd /home/myapp/myapp/vision && npm install && npm run build
142
+# 构建数据ETL pipeline
143
+cd /home/myapp/myapp/visionPlus && yarn && npm run build
144
145
输出路径:`myapp/static/appbuilder`
146
#### 纯前端开发(本地)
0 commit comments