├── .gitattributes ├── .github └── CODEOWNERS ├── LICENSE.md ├── README.md ├── SECURITY.md ├── centos_8.Dockerfile ├── centos_script.bsh ├── debian_11.Dockerfile ├── debian_12.Dockerfile ├── debian_script.bsh ├── rocky_10.Dockerfile ├── rocky_9.Dockerfile └── update-hashes /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @git-lfs/core 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /centos_8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/centos_8.Dockerfile -------------------------------------------------------------------------------- /centos_script.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/centos_script.bsh -------------------------------------------------------------------------------- /debian_11.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/debian_11.Dockerfile -------------------------------------------------------------------------------- /debian_12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/debian_12.Dockerfile -------------------------------------------------------------------------------- /debian_script.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/debian_script.bsh -------------------------------------------------------------------------------- /rocky_10.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/rocky_10.Dockerfile -------------------------------------------------------------------------------- /rocky_9.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/rocky_9.Dockerfile -------------------------------------------------------------------------------- /update-hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-lfs/build-dockers/HEAD/update-hashes --------------------------------------------------------------------------------