buildkit/worker/worker.go

30 lines
498 B
Go
Raw Normal View History

package worker
import (
"io"
"github.com/moby/buildkit/cache"
"golang.org/x/net/context"
)
type Meta struct {
Args []string
Env []string
User string
Cwd string
Tty bool
// DisableNetworking bool
}
type Mount struct {
Src cache.Mountable
Selector string
Dest string
Readonly bool
}
type Worker interface {
// TODO: add stdout/err
Exec(ctx context.Context, meta Meta, rootfs cache.Mountable, mounts []Mount, stdin io.ReadCloser, stdout, stderr io.WriteCloser) error
}