123456789101112131415161718192021222324252627282930 |
- package frontend
- import (
- "context"
- "io"
- "github.com/moby/buildkit/cache"
- "github.com/moby/buildkit/executor"
- "github.com/moby/buildkit/solver"
- "github.com/moby/buildkit/solver/pb"
- digest "github.com/opencontainers/go-digest"
- specs "github.com/opencontainers/image-spec/specs-go/v1"
- )
- type Frontend interface {
- Solve(ctx context.Context, llb FrontendLLBBridge, opt map[string]string) (solver.CachedResult, map[string][]byte, error)
- }
- type FrontendLLBBridge interface {
- Solve(ctx context.Context, req SolveRequest) (solver.CachedResult, map[string][]byte, error)
- ResolveImageConfig(ctx context.Context, ref string, platform *specs.Platform) (digest.Digest, []byte, error)
- Exec(ctx context.Context, meta executor.Meta, rootfs cache.ImmutableRef, stdin io.ReadCloser, stdout, stderr io.WriteCloser) error
- }
- type SolveRequest struct {
- Definition *pb.Definition
- Frontend string
- FrontendOpt map[string]string
- ImportCacheRefs []string
- }
|