-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
29 lines (24 loc) · 989 Bytes
/
go.mod
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
module github.com/keilerkonzept/dockerfile-json
go 1.23
toolchain go1.23.1
require (
github.com/moby/buildkit v0.18.2
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
)
require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/containerd/typeurl/v2 v2.2.3 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 // indirect
google.golang.org/protobuf v1.35.1 // indirect
)
replace (
github.com/containerd/containerd => github.com/containerd/containerd v1.7.22
github.com/docker/docker/v23/v20 => github.com/docker/docker v27.3.1+incompatible
)