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
-`--image-name` - Container image name to use (including tag).
625
625
-`--image-archive-file` - Local file path for the image tar archive file (used for the `depot` and `buildkit` engines).
626
626
-`--dockerfile` - Local Dockerfile path (for `buildkit` and `depot`) or a relative to the build context directory (for `docker` or `podman`). Default: `Dockerfile`.
@@ -632,6 +632,11 @@ Flags:
632
632
-`--engine-token` - Build engine specific API token (for `depot`).
633
633
-`--engine-namespace` - Build engine specific namespace (for `depot`).
634
634
-`--runtime-load` - Container runtime where to load the created image: `none`, `docker`, `podman`.
635
+
-`--base` - `simple` build engine: base image to use (from selected runtime, docker by default, or pulled if not available)
636
+
-`--base-tar` - `simple` build engine: base image from a local tar file
637
+
-`--base-with-certs` - `simple` build engine: boolean flat to use the static-debian12 distroless base image - contains only certs and timezone info
638
+
-`--exe-path` - `simple` build engine: local (linux) executable file that will be used as the entrypoint for the new image (added to the selected base image or scratch image if no base image is provided)
Copy file name to clipboardExpand all lines: pkg/app/master/command/imagebuild/flags.go
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,9 @@ const (
51
51
FlagBaseTar="base-tar"
52
52
FlagBaseTarUsage="base image from a local tar file"
53
53
54
+
FlagBaseWithCerts="base-with-certs"
55
+
FlagBaseWithCertsUsage="static-debian12 distroless base image - contains only certs and timezone info"
56
+
54
57
FlagExePath="exe-path"
55
58
FlagExePathUsage="local (linux) executable file that will be used as the entrypoint for the new image (added to the selected base image or scratch image if no base image is provided)"
56
59
)
@@ -221,6 +224,11 @@ var Flags = map[string]cli.Flag{
0 commit comments