-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: try other images when blob not found (#20)
- Loading branch information
Showing
3 changed files
with
35 additions
and
2,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,44 @@ | ||
module github.com/aquasecurity/testdocker | ||
|
||
go 1.14 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/containerd/containerd v1.6.26 // indirect | ||
github.com/distribution/reference v0.6.0 // indirect | ||
github.com/docker/docker v26.1.3+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/golang-jwt/jwt/v4 v4.0.0 | ||
github.com/google/go-containerregistry v0.19.1 | ||
github.com/gorilla/mux v1.7.4 | ||
github.com/moby/docker-image-spec v1.3.1 // indirect | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 | ||
google.golang.org/grpc v1.58.3 | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/containerd/containerd v1.6.26 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/distribution/reference v0.6.0 // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/moby/docker-image-spec v1.3.1 // indirect | ||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/vbatts/tar-split v0.11.3 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.