You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Override the base image for your function (host builder only)")
166
172
cmd.Flags().StringP("image", "i", f.Image,
167
173
"Full image name in the form [registry]/[namespace]/[name]:[tag]@[digest]. This option takes precedence over --registry. Specifying digest is optional, but if it is given, 'build' and 'push' phases are disabled. ($FUNC_IMAGE)")
"Override the base image for your function (host builder only)")
112
116
cmd.Flags().StringP("image", "i", f.Image,
113
117
"Full image name in the form [registry]/[namespace]/[name]:[tag]. This option takes precedence over --registry. Specifying tag is optional. ($FUNC_IMAGE)")
Copy file name to clipboardExpand all lines: docs/reference/func_build.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ func build
57
57
### Options
58
58
59
59
```
60
+
--base-image string Override the base image for your function (host builder only)
60
61
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
61
62
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "pack")
62
63
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
Copy file name to clipboardExpand all lines: docs/reference/func_deploy.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,7 @@ func deploy
113
113
### Options
114
114
115
115
```
116
+
--base-image string Override the base image for your function (host builder only)
116
117
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
117
118
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
118
119
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
Copy file name to clipboardExpand all lines: docs/reference/func_run.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@ func run
67
67
68
68
```
69
69
--address string Interface and port on which to bind and listen. Default is 127.0.0.1:8080, or an available port if 8080 is not available. ($FUNC_ADDRESS)
70
+
--base-image string Override the base image for your function (host builder only)
70
71
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
71
72
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
72
73
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
0 commit comments