├── .circleci ├── checkout_merge_commit.sh ├── config.yml ├── run_docker_build.sh └── test_docker_container.sh ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── Dockerfile_README.md ├── LICENSE ├── README.md ├── docker_daemon_config.json ├── download-qemu-static.sh ├── linux-anvil-cuda ├── Dockerfile └── entrypoint_source ├── linux-anvil ├── Dockerfile └── entrypoint_source ├── rpm-repos ├── centos7-aarch64-vault.repo ├── centos7-ppc64le-vault.repo └── centos7-x86_64-vault.repo └── scripts ├── deploy ├── entrypoint ├── fix_rpm ├── gen_readme ├── run_commands └── yum_clean_all /.circleci/checkout_merge_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.circleci/checkout_merge_commit.sh -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.circleci/run_docker_build.sh -------------------------------------------------------------------------------- /.circleci/test_docker_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.circleci/test_docker_container.sh -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @conda-forge/core 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | qemu*-static* 2 | -------------------------------------------------------------------------------- /Dockerfile_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/Dockerfile_README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/README.md -------------------------------------------------------------------------------- /docker_daemon_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "experimental": true 3 | } 4 | -------------------------------------------------------------------------------- /download-qemu-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/download-qemu-static.sh -------------------------------------------------------------------------------- /linux-anvil-cuda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/linux-anvil-cuda/Dockerfile -------------------------------------------------------------------------------- /linux-anvil-cuda/entrypoint_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/linux-anvil-cuda/entrypoint_source -------------------------------------------------------------------------------- /linux-anvil/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/linux-anvil/Dockerfile -------------------------------------------------------------------------------- /linux-anvil/entrypoint_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/linux-anvil/entrypoint_source -------------------------------------------------------------------------------- /rpm-repos/centos7-aarch64-vault.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/rpm-repos/centos7-aarch64-vault.repo -------------------------------------------------------------------------------- /rpm-repos/centos7-ppc64le-vault.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/rpm-repos/centos7-ppc64le-vault.repo -------------------------------------------------------------------------------- /rpm-repos/centos7-x86_64-vault.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/rpm-repos/centos7-x86_64-vault.repo -------------------------------------------------------------------------------- /scripts/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/scripts/deploy -------------------------------------------------------------------------------- /scripts/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/scripts/entrypoint -------------------------------------------------------------------------------- /scripts/fix_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/scripts/fix_rpm -------------------------------------------------------------------------------- /scripts/gen_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/scripts/gen_readme -------------------------------------------------------------------------------- /scripts/run_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/docker-images/HEAD/scripts/run_commands -------------------------------------------------------------------------------- /scripts/yum_clean_all: -------------------------------------------------------------------------------- 1 | #! /bin/sh -eu 2 | 3 | yum clean all 4 | rm -rf /var/cache/yum/* 5 | --------------------------------------------------------------------------------