@@ -8,7 +8,9 @@ Examples:
88 $ s build --dockerfile ./code/Dockerfile --context ./code
99 $ s build --custom-env "{\\"myenv\\": \\"test\\"}" --custom-args="-i https://pypi.tuna.tsinghua.edu.cn/simple"
1010 $ s build --command="pip install -t . flask -i https://pypi.tuna.tsinghua.edu.cn/simple"
11- $ s build --script-file my_script.sh` ,
11+ $ s build --script-file my_script.sh
12+ $ s build --cloud-build-config fc3-cloud-build.yaml
13+ $ s build --cloud-build-config fc3-cloud-build.yaml --debug-instance` ,
1214 summary : 'Build the dependencies' ,
1315 option : [
1416 [ '--publish-layer' , '[Optional] Publishing the built artifact as a layer' ] ,
@@ -20,6 +22,14 @@ Examples:
2022 ] ,
2123 [ '--command <string>' , '[Optional] Using custom commands' ] ,
2224 [ '--script-file <scriptFile>' , '[Optional] Using custom shell scripts' ] ,
25+ [
26+ '--cloud-build-config <buildYaml>' ,
27+ '[Optional] Cloud based build configuration file, default to search for the current directory fc3-cloud-build.yaml.' ,
28+ ] ,
29+ [
30+ '--debug-instance' ,
31+ '[Optional] Only for cloud building, start the interactive debugging window after the build is complete.' ,
32+ ] ,
2333 [
2434 '-f, --dockerfile <string>' ,
2535 '[Optional] Specify the dockerfile path, Use docker to build the image of the custom container runtime' ,
0 commit comments