-
Notifications
You must be signed in to change notification settings - Fork 9
/
copy.go
51 lines (41 loc) · 1.39 KB
/
copy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package llbutil
import (
"github.com/moby/buildkit/client/llb"
)
type copyOpt func(*llb.CopyInfo)
func FollowSymlink() func(ci *llb.CopyInfo) {
return func(ci *llb.CopyInfo) {
ci.FollowSymlinks = true
}
}
func CopyFrom(src llb.State, srcPath, destPath string, copyInfo ...copyOpt) llb.StateOption {
return func(s llb.State) llb.State {
return copy(src, srcPath, s, destPath, copyInfo...)
}
}
func CopyFromExcluding(src llb.State, srcPath string, destPath string, exclude []string) llb.StateOption {
return func(s llb.State) llb.State {
copyInfo := &llb.CopyInfo{
CreateDestPath: true,
AttemptUnpack: true,
AllowWildcard: true,
IncludePatterns: []string{"**/*"},
ExcludePatterns: exclude,
}
return s.File(llb.Copy(src, srcPath, destPath, copyInfo), llb.WithCustomNamef("COPY %s to %s", srcPath, destPath))
}
}
func copy(src llb.State, srcPath string, dest llb.State, destPath string, opts ...copyOpt) llb.State {
copyInfo := &llb.CopyInfo{
AllowWildcard: true,
AttemptUnpack: true,
CreateDestPath: true,
}
for _, opt := range opts {
opt(copyInfo)
}
return dest.File(llb.Copy(src, srcPath, destPath, copyInfo), llb.WithCustomNamef("COPY %s to %s", srcPath, destPath))
}