├── .dockerignore ├── .github └── workflows │ └── go.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── example_configs ├── alpine.json └── nginx.json ├── go.mod ├── go.sum ├── log └── log.go ├── main.go ├── rootfs ├── extract.go ├── image.go ├── pull.go └── pull_test.go ├── test ├── alpine.json ├── fas.json ├── integration.sh ├── junk.json ├── subuid.json └── timeout.json └── util ├── util.go └── util_test.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | rootfs_builder 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/README.md -------------------------------------------------------------------------------- /example_configs/alpine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/example_configs/alpine.json -------------------------------------------------------------------------------- /example_configs/nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/example_configs/nginx.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/go.sum -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/log/log.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/main.go -------------------------------------------------------------------------------- /rootfs/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/rootfs/extract.go -------------------------------------------------------------------------------- /rootfs/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/rootfs/image.go -------------------------------------------------------------------------------- /rootfs/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/rootfs/pull.go -------------------------------------------------------------------------------- /rootfs/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/rootfs/pull_test.go -------------------------------------------------------------------------------- /test/alpine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/alpine.json -------------------------------------------------------------------------------- /test/fas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/fas.json -------------------------------------------------------------------------------- /test/integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/integration.sh -------------------------------------------------------------------------------- /test/junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/junk.json -------------------------------------------------------------------------------- /test/subuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/subuid.json -------------------------------------------------------------------------------- /test/timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/test/timeout.json -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/util/util.go -------------------------------------------------------------------------------- /util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForAllSecure/rootfs_builder/HEAD/util/util_test.go --------------------------------------------------------------------------------