2019-06-21 23:23:28 +08:00
|
|
|
module github.com/containers/buildah
|
|
|
|
|
2021-08-10 16:30:27 +08:00
|
|
|
go 1.13
|
2019-06-21 23:23:28 +08:00
|
|
|
|
|
|
|
require (
|
2021-10-05 21:42:10 +08:00
|
|
|
github.com/containerd/containerd v1.5.7
|
2021-02-06 03:38:25 +08:00
|
|
|
github.com/containernetworking/cni v0.8.1
|
2021-09-28 02:19:59 +08:00
|
|
|
github.com/containers/common v0.44.2
|
2022-04-07 03:45:50 +08:00
|
|
|
github.com/containers/image/v5 v5.16.1-0.20220406192429-8b06d33b562e
|
2021-06-29 16:22:18 +08:00
|
|
|
github.com/containers/ocicrypt v1.1.2
|
2022-04-07 03:40:56 +08:00
|
|
|
github.com/containers/storage v1.36.3
|
2019-09-30 20:42:10 +08:00
|
|
|
github.com/docker/distribution v2.7.1+incompatible
|
2019-07-23 23:58:15 +08:00
|
|
|
github.com/docker/go-units v0.4.0
|
2019-06-25 22:26:41 +08:00
|
|
|
github.com/docker/libnetwork v0.8.0-dev.2.0.20190625141545-5a177b73e316
|
2021-08-23 16:36:34 +08:00
|
|
|
github.com/fsouza/go-dockerclient v1.7.4
|
2019-06-21 23:23:28 +08:00
|
|
|
github.com/ghodss/yaml v1.0.0
|
2021-03-15 18:25:09 +08:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2021-04-11 01:44:51 +08:00
|
|
|
github.com/ishidawataru/sctp v0.0.0-20210226210310-f2269e66cdee // indirect
|
2021-05-18 16:02:48 +08:00
|
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
|
2021-06-10 03:34:56 +08:00
|
|
|
github.com/mattn/go-shellwords v1.0.12
|
2022-02-02 05:38:24 +08:00
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2021-06-03 16:17:43 +08:00
|
|
|
github.com/onsi/ginkgo v1.16.4
|
2021-08-23 16:37:22 +08:00
|
|
|
github.com/onsi/gomega v1.16.0
|
2020-05-18 18:10:19 +08:00
|
|
|
github.com/opencontainers/go-digest v1.0.0
|
2021-08-26 16:26:50 +08:00
|
|
|
github.com/opencontainers/image-spec v1.0.2-0.20210819154149-5ad6f50d6283
|
2021-08-23 16:38:07 +08:00
|
|
|
github.com/opencontainers/runc v1.0.2
|
2021-05-11 16:20:51 +08:00
|
|
|
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
|
2019-07-16 22:23:18 +08:00
|
|
|
github.com/opencontainers/runtime-tools v0.9.0
|
2021-09-10 16:34:55 +08:00
|
|
|
github.com/opencontainers/selinux v1.8.5
|
2021-04-21 03:59:43 +08:00
|
|
|
github.com/openshift/imagebuilder v1.2.2-0.20210415181909-87f3e48c2656
|
2020-01-19 00:41:36 +08:00
|
|
|
github.com/pkg/errors v0.9.1
|
2022-03-25 04:26:14 +08:00
|
|
|
github.com/prometheus/client_golang v1.11.1 // indirect
|
2020-08-28 17:38:44 +08:00
|
|
|
github.com/seccomp/libseccomp-golang v0.9.2-0.20200616122406-847368b35ebf
|
2021-03-15 18:24:24 +08:00
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2021-07-02 20:26:20 +08:00
|
|
|
github.com/spf13/cobra v1.2.1
|
2019-09-30 20:39:04 +08:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2021-01-18 18:22:50 +08:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-02-09 07:06:30 +08:00
|
|
|
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
|
2021-06-10 03:35:21 +08:00
|
|
|
go.etcd.io/bbolt v1.3.6
|
2022-04-13 02:11:44 +08:00
|
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
|
2021-07-02 20:26:20 +08:00
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
2021-08-26 16:26:50 +08:00
|
|
|
golang.org/x/sys v0.0.0-20210820121016-41cdb8703e55
|
2021-08-25 03:30:13 +08:00
|
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
2020-06-19 06:03:43 +08:00
|
|
|
k8s.io/klog v1.0.0 // indirect
|
2019-06-21 23:23:28 +08:00
|
|
|
)
|
2020-04-06 21:57:52 +08:00
|
|
|
|
|
|
|
replace github.com/sirupsen/logrus => github.com/sirupsen/logrus v1.4.2
|