25 lines
754 B
Go
25 lines
754 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)
|
|
}
|
|
|
|
type SolveRequest = gw.SolveRequest
|
|
|
|
type CacheOptionsEntry = gw.CacheOptionsEntry
|