├── .gitattributes ├── LICENSE ├── README.md ├── go.mod └── main.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burpheart/imagepuller/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burpheart/imagepuller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # imagepuller 2 | 可以从公开仓库直接拖取镜像的一个小工具 方便直接解包审计代码 3 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module imagepulller 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burpheart/imagepuller/HEAD/main.go --------------------------------------------------------------------------------