mirror of
https://github.com/moby/buildkit.git
synced 2026-08-04 14:50:21 +00:00
buildctl: support --no-cache for Dockerfile frontend
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
This commit is contained in:
@@ -61,7 +61,7 @@ var buildCommand = cli.Command{
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "no-cache",
|
||||
Usage: "Disable cache for all the vertices. Frontend is not supported.",
|
||||
Usage: "Disable cache for all the vertices",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "export-cache",
|
||||
@@ -218,9 +218,7 @@ func build(clicontext *cli.Context) error {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
if clicontext.Bool("no-cache") {
|
||||
return errors.New("no-cache is not supported for frontends")
|
||||
}
|
||||
solveOpt.FrontendAttrs["no-cache"] = ""
|
||||
}
|
||||
|
||||
eg.Go(func() error {
|
||||
|
||||
@@ -63,6 +63,10 @@ By default, the built image is loaded to Docker.
|
||||
Name: "target",
|
||||
Usage: "Set the target build stage to build.",
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "no-cache",
|
||||
Usage: "Do not use cache when building the image",
|
||||
},
|
||||
}, dockerIncompatibleFlags...)
|
||||
app.Action = action
|
||||
if err := app.Run(os.Args); err != nil {
|
||||
@@ -145,7 +149,9 @@ func newSolveOpt(clicontext *cli.Context, w io.WriteCloser) (*client.SolveOpt, e
|
||||
if target := clicontext.String("target"); target != "" {
|
||||
frontendAttrs["target"] = target
|
||||
}
|
||||
|
||||
if clicontext.Bool("no-cache") {
|
||||
frontendAttrs["no-cache"] = ""
|
||||
}
|
||||
for _, buildArg := range clicontext.StringSlice("build-arg") {
|
||||
kv := strings.SplitN(buildArg, "=", 2)
|
||||
if len(kv) != 2 {
|
||||
|
||||
Reference in New Issue
Block a user