├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── finish_container.sh ├── issues.md ├── manage_images.py ├── start_container.sh └── test_image_mgmt.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/README.md -------------------------------------------------------------------------------- /finish_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/finish_container.sh -------------------------------------------------------------------------------- /issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/issues.md -------------------------------------------------------------------------------- /manage_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/manage_images.py -------------------------------------------------------------------------------- /start_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/start_container.sh -------------------------------------------------------------------------------- /test_image_mgmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a13xp0p0v/kernel-build-containers/HEAD/test_image_mgmt.sh --------------------------------------------------------------------------------