mirror of https://github.com/docker/cli.git
build: allow setting buildkit outputs
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
parent
774d78fcb8
commit
ca6eb5049b
|
@ -5,6 +5,7 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
|
"encoding/csv"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
@ -73,6 +74,7 @@ type buildOptions struct {
|
||||||
untrusted bool
|
untrusted bool
|
||||||
secrets []string
|
secrets []string
|
||||||
ssh []string
|
ssh []string
|
||||||
|
outputs []string
|
||||||
}
|
}
|
||||||
|
|
||||||
// dockerfileFromStdin returns true when the user specified that the Dockerfile
|
// dockerfileFromStdin returns true when the user specified that the Dockerfile
|
||||||
|
@ -176,6 +178,11 @@ func NewBuildCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
flags.StringArrayVar(&options.ssh, "ssh", []string{}, "SSH agent socket or keys to expose to the build (only if BuildKit enabled) (format: default|<id>[=<socket>|<key>[,<key>]])")
|
flags.StringArrayVar(&options.ssh, "ssh", []string{}, "SSH agent socket or keys to expose to the build (only if BuildKit enabled) (format: default|<id>[=<socket>|<key>[,<key>]])")
|
||||||
flags.SetAnnotation("ssh", "version", []string{"1.39"})
|
flags.SetAnnotation("ssh", "version", []string{"1.39"})
|
||||||
flags.SetAnnotation("ssh", "buildkit", nil)
|
flags.SetAnnotation("ssh", "buildkit", nil)
|
||||||
|
|
||||||
|
flags.StringArrayVarP(&options.outputs, "output", "o", []string{}, "Output destination (format: type=local,dest=path)")
|
||||||
|
flags.SetAnnotation("output", "version", []string{"1.40"})
|
||||||
|
flags.SetAnnotation("output", "buildkit", nil)
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -643,3 +650,49 @@ func imageBuildOptions(dockerCli command.Cli, options buildOptions) types.ImageB
|
||||||
Platform: options.platform,
|
Platform: options.platform,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseOutputs(inp []string) ([]types.ImageBuildOutput, error) {
|
||||||
|
var outs []types.ImageBuildOutput
|
||||||
|
if len(inp) == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
for _, s := range inp {
|
||||||
|
csvReader := csv.NewReader(strings.NewReader(s))
|
||||||
|
fields, err := csvReader.Read()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(fields) == 1 && fields[0] == s {
|
||||||
|
outs = append(outs, types.ImageBuildOutput{
|
||||||
|
Type: "local",
|
||||||
|
Attrs: map[string]string{
|
||||||
|
"dest": s,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
out := types.ImageBuildOutput{
|
||||||
|
Attrs: map[string]string{},
|
||||||
|
}
|
||||||
|
for _, field := range fields {
|
||||||
|
parts := strings.SplitN(field, "=", 2)
|
||||||
|
if len(parts) != 2 {
|
||||||
|
return nil, errors.Errorf("invalid value %s", field)
|
||||||
|
}
|
||||||
|
key := strings.ToLower(parts[0])
|
||||||
|
value := parts[1]
|
||||||
|
switch key {
|
||||||
|
case "type":
|
||||||
|
out.Type = value
|
||||||
|
default:
|
||||||
|
out.Attrs[key] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if out.Type == "" {
|
||||||
|
return nil, errors.Errorf("type is required for output")
|
||||||
|
}
|
||||||
|
outs = append(outs, out)
|
||||||
|
}
|
||||||
|
return outs, nil
|
||||||
|
}
|
||||||
|
|
|
@ -117,6 +117,23 @@ func runBuildBuildKit(dockerCli command.Cli, options buildOptions) error {
|
||||||
defer os.RemoveAll(dockerfileDir)
|
defer os.RemoveAll(dockerfileDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
outputs, err := parseOutputs(options.outputs)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrapf(err, "failed to parse outputs")
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, out := range outputs {
|
||||||
|
if out.Type == "local" {
|
||||||
|
// dest is handled on client side for local exporter
|
||||||
|
outDir, ok := out.Attrs["dest"]
|
||||||
|
if !ok {
|
||||||
|
return errors.Errorf("dest is required for local output")
|
||||||
|
}
|
||||||
|
delete(out.Attrs, "dest")
|
||||||
|
s.Allow(filesync.NewFSSyncTargetDir(outDir))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if dockerfileDir != "" {
|
if dockerfileDir != "" {
|
||||||
s.Allow(filesync.NewFSSyncProvider([]filesync.SyncedDir{
|
s.Allow(filesync.NewFSSyncProvider([]filesync.SyncedDir{
|
||||||
{
|
{
|
||||||
|
@ -182,6 +199,7 @@ func runBuildBuildKit(dockerCli command.Cli, options buildOptions) error {
|
||||||
buildOptions.RemoteContext = remote
|
buildOptions.RemoteContext = remote
|
||||||
buildOptions.SessionID = s.ID()
|
buildOptions.SessionID = s.ID()
|
||||||
buildOptions.BuildID = buildID
|
buildOptions.BuildID = buildID
|
||||||
|
buildOptions.Outputs = outputs
|
||||||
return doBuild(ctx, eg, dockerCli, options, buildOptions)
|
return doBuild(ctx, eg, dockerCli, options, buildOptions)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue