├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build-pr.yml │ └── release-weekly-build.yml ├── .gitignore ├── .golangci.yml ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── NOTICE ├── README.md ├── cmd └── docker-scan │ └── main.go ├── go.mod ├── go.sum ├── internal ├── deprecation.go ├── version.go └── version_test.go ├── scripts └── validate │ ├── check-go-mod │ ├── fileheader │ └── template │ ├── bash.txt │ ├── dockerfile.txt │ ├── go.txt │ └── makefile.txt └── vars.mk /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.github/workflows/build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-weekly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.github/workflows/release-weekly-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/.golangci.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/README.md -------------------------------------------------------------------------------- /cmd/docker-scan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/cmd/docker-scan/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /internal/deprecation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/internal/deprecation.go -------------------------------------------------------------------------------- /internal/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/internal/version.go -------------------------------------------------------------------------------- /internal/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/internal/version_test.go -------------------------------------------------------------------------------- /scripts/validate/check-go-mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/check-go-mod -------------------------------------------------------------------------------- /scripts/validate/fileheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/fileheader -------------------------------------------------------------------------------- /scripts/validate/template/bash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/template/bash.txt -------------------------------------------------------------------------------- /scripts/validate/template/dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/template/dockerfile.txt -------------------------------------------------------------------------------- /scripts/validate/template/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/template/go.txt -------------------------------------------------------------------------------- /scripts/validate/template/makefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/scripts/validate/template/makefile.txt -------------------------------------------------------------------------------- /vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-archive-public/docker.scan-cli-plugin/HEAD/vars.mk --------------------------------------------------------------------------------