├── .github └── CODEOWNERS ├── README.md ├── alma9 ├── Dockerfile └── packages ├── arch ├── Dockerfile └── README-arch.md ├── centos7 ├── Dockerfile └── packages ├── centos_from_source ├── Dockerfile └── packages ├── conda ├── Dockerfile └── entry_point.sh ├── fedora ├── Dockerfile └── packages ├── gentoo ├── Dockerfile └── portage │ ├── make.conf │ ├── package.accept_keywords │ ├── package.use │ ├── llvm │ └── root │ └── repos.conf ├── ubuntu20 ├── Dockerfile └── packages ├── ubuntu2204 ├── Dockerfile └── packages ├── ubuntu2310 ├── Dockerfile └── packages ├── ubuntu2404 ├── Dockerfile └── packages ├── ubuntu2410 ├── Dockerfile └── packages ├── ubuntu2504 ├── Dockerfile └── packages ├── ubuntu2510 ├── Dockerfile └── packages └── ubuntu_from_source ├── Dockerfile └── packages /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @martamaja10 2 | * @dpiparo 3 | /arch/ @kgizdov 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/README.md -------------------------------------------------------------------------------- /alma9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/alma9/Dockerfile -------------------------------------------------------------------------------- /alma9/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/alma9/packages -------------------------------------------------------------------------------- /arch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/arch/Dockerfile -------------------------------------------------------------------------------- /arch/README-arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/arch/README-arch.md -------------------------------------------------------------------------------- /centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/centos7/Dockerfile -------------------------------------------------------------------------------- /centos7/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/centos7/packages -------------------------------------------------------------------------------- /centos_from_source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/centos_from_source/Dockerfile -------------------------------------------------------------------------------- /centos_from_source/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/centos_from_source/packages -------------------------------------------------------------------------------- /conda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/conda/Dockerfile -------------------------------------------------------------------------------- /conda/entry_point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/conda/entry_point.sh -------------------------------------------------------------------------------- /fedora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/fedora/Dockerfile -------------------------------------------------------------------------------- /fedora/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/fedora/packages -------------------------------------------------------------------------------- /gentoo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/Dockerfile -------------------------------------------------------------------------------- /gentoo/portage/make.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/portage/make.conf -------------------------------------------------------------------------------- /gentoo/portage/package.accept_keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/portage/package.accept_keywords -------------------------------------------------------------------------------- /gentoo/portage/package.use/llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/portage/package.use/llvm -------------------------------------------------------------------------------- /gentoo/portage/package.use/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/portage/package.use/root -------------------------------------------------------------------------------- /gentoo/portage/repos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/gentoo/portage/repos.conf -------------------------------------------------------------------------------- /ubuntu20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu20/Dockerfile -------------------------------------------------------------------------------- /ubuntu20/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu20/packages -------------------------------------------------------------------------------- /ubuntu2204/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2204/Dockerfile -------------------------------------------------------------------------------- /ubuntu2204/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2204/packages -------------------------------------------------------------------------------- /ubuntu2310/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2310/Dockerfile -------------------------------------------------------------------------------- /ubuntu2310/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2310/packages -------------------------------------------------------------------------------- /ubuntu2404/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2404/Dockerfile -------------------------------------------------------------------------------- /ubuntu2404/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2404/packages -------------------------------------------------------------------------------- /ubuntu2410/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2410/Dockerfile -------------------------------------------------------------------------------- /ubuntu2410/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2410/packages -------------------------------------------------------------------------------- /ubuntu2504/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2504/Dockerfile -------------------------------------------------------------------------------- /ubuntu2504/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2504/packages -------------------------------------------------------------------------------- /ubuntu2510/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2510/Dockerfile -------------------------------------------------------------------------------- /ubuntu2510/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu2510/packages -------------------------------------------------------------------------------- /ubuntu_from_source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu_from_source/Dockerfile -------------------------------------------------------------------------------- /ubuntu_from_source/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/root-docker/HEAD/ubuntu_from_source/packages --------------------------------------------------------------------------------