28 lines
863 B
Go
28 lines
863 B
Go
package frontend
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/moby/buildkit/client/llb"
|
|
gw "github.com/moby/buildkit/frontend/gateway/client"
|
|
"github.com/moby/buildkit/session"
|
|
"github.com/moby/buildkit/solver/pb"
|
|
digest "github.com/opencontainers/go-digest"
|
|
)
|
|
|
|
type Frontend interface {
|
|
Solve(ctx context.Context, llb FrontendLLBBridge, opt map[string]string, inputs map[string]*pb.Definition, sid string, sm *session.Manager) (*Result, error)
|
|
}
|
|
|
|
type FrontendLLBBridge interface {
|
|
Solve(ctx context.Context, req SolveRequest, sid string) (*Result, error)
|
|
ResolveImageConfig(ctx context.Context, ref string, opt llb.ResolveImageConfigOpt) (digest.Digest, []byte, error)
|
|
Warn(ctx context.Context, dgst digest.Digest, msg string, opts WarnOpts) error
|
|
}
|
|
|
|
type SolveRequest = gw.SolveRequest
|
|
|
|
type CacheOptionsEntry = gw.CacheOptionsEntry
|
|
|
|
type WarnOpts = gw.WarnOpts
|