forked from tonistiigi/buildkit-alpine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.go
285 lines (247 loc) · 7.38 KB
/
build.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package alpine
import (
"context"
"encoding/json"
"fmt"
"net/url"
"path"
"strings"
apko "chainguard.dev/apko/pkg/build/types"
"github.com/containerd/containerd/platforms"
"github.com/moby/buildkit/client/llb"
"github.com/moby/buildkit/exporter/containerimage/exptypes"
"github.com/moby/buildkit/exporter/containerimage/image"
"github.com/moby/buildkit/frontend/dockerui"
"github.com/moby/buildkit/frontend/gateway/client"
"github.com/moby/buildkit/solver/pb"
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
)
type cf interface {
CurrentFrontend() (*llb.State, error)
}
func forwardSingleResult(res *client.Result) (client.Reference, *image.Image, error) {
ref, err := res.SingleRef()
if err != nil {
return nil, nil, err
}
if dt, ok := res.Metadata[exptypes.ExporterImageConfigKey]; ok {
var img image.Image
if err := json.Unmarshal(dt, &img); err != nil {
return nil, nil, err
}
return ref, &img, nil
}
return ref, nil, nil
}
func Build(ctx context.Context, c client.Client) (*client.Result, error) {
ui, err := dockerui.NewClient(c)
if err != nil {
return nil, err
}
var self llb.State
if cc, ok := c.(cf); !ok {
return nil, errors.Errorf("no support for frontend reexec, buildkit v0.10+ required")
} else {
st, err := cc.CurrentFrontend()
if err != nil {
return nil, err
}
self = *st
}
src, err := ui.ReadEntrypoint(ctx, "Yaml")
if err != nil {
return nil, err
}
ic, err := parse(src.Data)
if err != nil {
return nil, err
}
if ui.TargetPlatforms == nil && len(ic.Archs) > 0 {
ui.TargetPlatforms = fromAlpinePlatforms(ic.Archs)
}
rb, err := ui.Build(ctx, func(ctx context.Context, platform *ocispecs.Platform, idx int) (client.Reference, *image.Image, error) {
if platform == nil {
p := platforms.DefaultSpec()
platform = &p
}
opts := c.BuildOpts().Opts
if urls, ok := opts["build-arg:urls"]; ok && urls != "" {
res, img, err := installPkgs(ctx, c, self, *platform)
if err != nil {
return nil, nil, err
}
ref, _, err := forwardSingleResult(res)
if err != nil {
return nil, nil, err
}
return ref, img, nil
}
res, err := buildPlatform(ctx, c, self, *platform, ic)
if err != nil {
return nil, nil, err
}
return forwardSingleResult(res)
})
if err != nil {
return nil, err
}
return rb.Finalize()
}
func isIgnoreCache(c client.Client) bool {
if _, ok := c.BuildOpts().Opts["no-cache"]; ok {
return true
}
return false
}
func initRepo(c client.Client, self llb.State, p ocispecs.Platform, repos []string) llb.State {
cmd := fmt.Sprintf(`sh -c "apk add --initdb --arch %s --root /out"`, alpinePlatform(p))
ro := []llb.RunOption{llb.Shlex(cmd), llb.Network(llb.NetModeNone), llb.WithCustomNamef("[%s] initialize repo", platforms.Format(p))}
if isIgnoreCache(c) {
ro = append(ro, llb.IgnoreCache)
}
rootfs := self.Run(ro...).AddMount("/out", llb.Scratch())
rootfs = rootfs.File(
llb.Mkfile("/etc/apk/repositories", 0644, []byte(strings.Join(repos, "\n"))).
Copy(self, "/usr/share/apk/keys/"+alpinePlatform(p)+"/*", "/etc/apk/keys/", &llb.CopyInfo{
AllowWildcard: true,
AllowEmptyWildcard: true,
FollowSymlinks: true,
}),
llb.WithCustomNamef("[%s] add repositories and keys", platforms.Format(p)),
)
return rootfs
}
func buildPlatform(ctx context.Context, c client.Client, self llb.State, p ocispecs.Platform, ic *apko.ImageConfiguration) (*client.Result, error) {
rootfs := initRepo(c, self, p, ic.Contents.Repositories)
cmd := fmt.Sprintf(`sh -c "ls -l /out/etc/apk/keys && apk update --root /out && apk fetch -R --simulate --root /out --update --url %s > /urls"`, strings.Join(ic.Contents.Packages, " "))
ro := []llb.RunOption{llb.Shlex(cmd), llb.WithCustomNamef("[%s] fetch package locations", platforms.Format(p))}
if isIgnoreCache(c) {
ro = append(ro, llb.IgnoreCache)
}
run := self.Run(ro...)
run.AddMount("/out", rootfs)
def, err := run.Marshal(ctx)
if err != nil {
return nil, err
}
res, err := c.Solve(ctx, client.SolveRequest{
Definition: def.ToPB(),
})
if err != nil {
return nil, err
}
dt, err := res.Ref.ReadFile(ctx, client.ReadRequest{
Filename: "/urls",
})
if err != nil {
return nil, err
}
var urls []string
for _, u := range strings.Split(string(dt), "\n") {
u = strings.TrimSpace(u)
if u == "" {
continue
}
urls = append(urls, u)
}
opts := map[string]string{}
for k, v := range c.BuildOpts().Opts {
opts[k] = v
}
opts["platform"] = platforms.Format(p)
opts["build-arg:urls"] = strings.Join(urls, ",")
opts["build-arg:repositories"] = strings.Join(ic.Contents.Repositories, ",")
opts["build-arg:cmd"] = ic.Cmd
opts["build-arg:entrypoint"] = ic.Entrypoint.Command // TODO
opts["build-arg:workdir"] = ic.WorkDir
for k, v := range ic.Environment {
opts["build-arg:env:"+k] = v
}
inputs, err := c.Inputs(ctx)
if err != nil {
return nil, err
}
frontendInputs := make(map[string]*pb.Definition)
for name, state := range inputs {
def, err := state.Marshal(ctx)
if err != nil {
return nil, err
}
frontendInputs[name] = def.ToPB()
}
return c.Solve(ctx, client.SolveRequest{
Frontend: "gateway.v0",
FrontendOpt: opts,
FrontendInputs: frontendInputs,
})
}
func installPkgs(ctx context.Context, c client.Client, self llb.State, p ocispecs.Platform) (*client.Result, *image.Image, error) {
urls := c.BuildOpts().Opts["build-arg:urls"]
repos := c.BuildOpts().Opts["build-arg:repositories"]
rootfs := initRepo(c, self, p, strings.Split(repos, ","))
cmd := `sh -c "apk add --no-network --root /out /downloads/*.apk"`
ro := []llb.RunOption{llb.Shlex(cmd), llb.Network(llb.NetModeNone), llb.WithCustomNamef("[%s] install packages", platforms.Format(p))}
if isIgnoreCache(c) {
ro = append(ro, llb.IgnoreCache)
}
run := self.Run(ro...)
rootfs = run.AddMount("/out", rootfs)
for _, rawURL := range strings.Split(urls, ",") {
u, err := url.Parse(rawURL)
if err != nil {
return nil, nil, err
}
base := path.Base(u.Path)
run.AddMount("/downloads/"+base, llb.HTTP(rawURL, llb.Filename(base), llb.WithCustomNamef("[%s] download %s", platforms.Format(p), base)), llb.SourcePath(base))
}
def, err := rootfs.Marshal(ctx)
if err != nil {
return nil, nil, err
}
res, err := c.Solve(ctx, client.SolveRequest{
Definition: def.ToPB(),
})
if err != nil {
return nil, nil, err
}
img := &image.Image{
Image: ocispecs.Image{
Platform: ocispecs.Platform{
Architecture: p.Architecture,
OS: p.OS,
Variant: p.Variant,
},
},
}
for k, v := range c.BuildOpts().Opts {
if !strings.HasPrefix(k, "build-arg:") {
continue
}
if k == "build-arg:cmd" && v != "" {
img.Config.Cmd = strings.Split(v, " ")
}
if k == "build-arg:entrypoint" && v != "" {
img.Config.Entrypoint = strings.Split(v, " ")
}
if k == "build-arg:workdir" && v != "" {
img.Config.WorkingDir = v
}
if strings.HasPrefix(k, "build-arg:env:") {
img.Config.Env = append(img.Config.Env, strings.TrimPrefix(k, "build-arg:env:")+"="+v)
}
}
return res, img, nil
}
func parse(dt []byte) (*apko.ImageConfiguration, error) {
// TODO: apko doesn't have a clean types pkg. Upstream changes or copy/paste only the definitions
var ic apko.ImageConfiguration
if err := yaml.Unmarshal(dt, &ic); err != nil {
return nil, errors.Wrap(err, "failed to parse image configuration")
}
if err := ic.Validate(); err != nil {
return nil, err
}
return &ic, nil
}