-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Appu Goundan <[email protected]>
- Loading branch information
1 parent
c063779
commit 7026889
Showing
39 changed files
with
168 additions
and
337 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,3 +1,3 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:22.04 | ||
ADD out/container-structure-test /container-structure-test | ||
ENTRYPOINT ["/container-structure-test"] | ||
ENTRYPOINT ["/container-structure-test"] |
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
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
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
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,51 +1,59 @@ | ||
module github.com/GoogleContainerTools/container-structure-test | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/GoogleContainerTools/container-diff v0.17.1-0.20230727210151-35d9770aeea3 | ||
github.com/fsouza/go-dockerclient v1.10.0 | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/google/go-containerregistry v0.15.2 | ||
github.com/GoogleContainerTools/container-diff v0.19.0 | ||
github.com/fsouza/go-dockerclient v1.10.2 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/go-containerregistry v0.19.0 | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/opencontainers/image-spec v1.1.0-rc5 | ||
github.com/opencontainers/image-spec v1.1.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/cobra v1.8.0 | ||
golang.org/x/crypto v0.14.0 | ||
golang.org/x/crypto v0.19.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
exclude github.com/docker/docker v24.0.6+incompatible // indirect | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/containerd/containerd v1.6.18 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect | ||
github.com/docker/cli v23.0.5+incompatible // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/docker/docker v23.0.5+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/containerd/containerd v1.7.13 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect | ||
github.com/distribution/reference v0.5.0 // indirect | ||
github.com/docker/cli v25.0.3+incompatible // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/docker/docker v25.0.3+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.8.1 // indirect | ||
github.com/docker/go-connections v0.5.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/moby/patternmatcher v0.6.0 // indirect | ||
github.com/moby/sys/sequential v0.5.0 // indirect | ||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect | ||
github.com/moby/sys/user v0.1.0 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/runc v1.1.5 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/vbatts/tar-split v0.11.3 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
github.com/vbatts/tar-split v0.11.5 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect | ||
go.opentelemetry.io/otel v1.23.1 // indirect | ||
go.opentelemetry.io/otel/metric v1.23.1 // indirect | ||
go.opentelemetry.io/otel/trace v1.23.1 // indirect | ||
golang.org/x/mod v0.15.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/term v0.17.0 // indirect | ||
golang.org/x/tools v0.18.0 // indirect | ||
) |
Oops, something went wrong.