LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
atomic_reactor/__init__.py
atomic_reactor/auth.py
atomic_reactor/config.py
atomic_reactor/constants.py
atomic_reactor/dirs.py
atomic_reactor/download.py
atomic_reactor/inner.py
atomic_reactor/metadata.py
atomic_reactor/plugin.py
atomic_reactor/source.py
atomic_reactor/types.py
atomic_reactor/util.py
atomic_reactor/version.py
atomic_reactor.egg-info/PKG-INFO
atomic_reactor.egg-info/SOURCES.txt
atomic_reactor.egg-info/dependency_links.txt
atomic_reactor.egg-info/entry_points.txt
atomic_reactor.egg-info/requires.txt
atomic_reactor.egg-info/top_level.txt
atomic_reactor/cli/__init__.py
atomic_reactor/cli/job.py
atomic_reactor/cli/main.py
atomic_reactor/cli/parser.py
atomic_reactor/cli/task.py
atomic_reactor/plugins/__init__.py
atomic_reactor/plugins/add_buildargs_in_df.py
atomic_reactor/plugins/add_dockerfile.py
atomic_reactor/plugins/add_filesystem.py
atomic_reactor/plugins/add_flatpak_labels.py
atomic_reactor/plugins/add_help.py
atomic_reactor/plugins/add_image_content_manifest.py
atomic_reactor/plugins/add_labels_in_df.py
atomic_reactor/plugins/build_source_container.py
atomic_reactor/plugins/bump_release.py
atomic_reactor/plugins/cancel_build_reservation.py
atomic_reactor/plugins/change_from_in_df.py
atomic_reactor/plugins/check_and_set_platforms.py
atomic_reactor/plugins/check_base_image.py
atomic_reactor/plugins/check_user_settings.py
atomic_reactor/plugins/compare_components.py
atomic_reactor/plugins/distribution_scope.py
atomic_reactor/plugins/export_operator_manifests.py
atomic_reactor/plugins/fetch_docker_archive.py
atomic_reactor/plugins/fetch_maven_artifacts.py
atomic_reactor/plugins/fetch_sources.py
atomic_reactor/plugins/flatpak_create_dockerfile.py
atomic_reactor/plugins/flatpak_create_oci.py
atomic_reactor/plugins/flatpak_update_dockerfile.py
atomic_reactor/plugins/gather_builds_metadata.py
atomic_reactor/plugins/generate_sbom.py
atomic_reactor/plugins/group_manifests.py
atomic_reactor/plugins/hermeto_init.py
atomic_reactor/plugins/hermeto_postprocess.py
atomic_reactor/plugins/hide_files.py
atomic_reactor/plugins/inject_parent_image.py
atomic_reactor/plugins/inject_yum_repos.py
atomic_reactor/plugins/koji_import.py
atomic_reactor/plugins/koji_parent.py
atomic_reactor/plugins/koji_tag_build.py
atomic_reactor/plugins/maven_url_sources_metadata.py
atomic_reactor/plugins/pin_operator_digest.py
atomic_reactor/plugins/push_floating_tags.py
atomic_reactor/plugins/pyrpkg_fetch_artefacts.py
atomic_reactor/plugins/resolve_composes.py
atomic_reactor/plugins/resolve_remote_source.py
atomic_reactor/plugins/rpmqa.py
atomic_reactor/plugins/sendmail.py
atomic_reactor/plugins/store_metadata.py
atomic_reactor/plugins/tag_and_push.py
atomic_reactor/plugins/tag_from_config.py
atomic_reactor/plugins/verify_media_types.py
atomic_reactor/schemas/config.json
atomic_reactor/schemas/content_manifest.json
atomic_reactor/schemas/content_sets.json
atomic_reactor/schemas/fetch-artifacts-nvr.json
atomic_reactor/schemas/fetch-artifacts-pnc.json
atomic_reactor/schemas/fetch-artifacts-url.json
atomic_reactor/schemas/operator_csv_modifications.json
atomic_reactor/schemas/package_mapping.json
atomic_reactor/schemas/plugins.json
atomic_reactor/schemas/sbom-1.4.schema.json
atomic_reactor/schemas/source_containers_user_params.json
atomic_reactor/schemas/user_params.json
atomic_reactor/schemas/workflow_data.json
atomic_reactor/tasks/__init__.py
atomic_reactor/tasks/binary.py
atomic_reactor/tasks/binary_container_build.py
atomic_reactor/tasks/clone.py
atomic_reactor/tasks/common.py
atomic_reactor/tasks/plugin_based.py
atomic_reactor/tasks/sources.py
atomic_reactor/utils/__init__.py
atomic_reactor/utils/cachito.py
atomic_reactor/utils/flatpak_util.py
atomic_reactor/utils/hermeto.py
atomic_reactor/utils/imageutil.py
atomic_reactor/utils/koji.py
atomic_reactor/utils/manifest.py
atomic_reactor/utils/odcs.py
atomic_reactor/utils/operator.py
atomic_reactor/utils/pnc.py
atomic_reactor/utils/remote_host.py
atomic_reactor/utils/retries.py
atomic_reactor/utils/rpm.py
atomic_reactor/utils/yum.py
docs/api.md
docs/base_images.md
docs/config.md
docs/dev_testing.md
docs/flatpak.md
docs/garbage_collection.md
docs/koji.md
docs/plugin_development.md
docs/plugins.md
docs/pull_request_template.md
docs/tasks.md
docs/manpage/atomic-reactor.1
tests/__init__.py
tests/conftest.py
tests/constants.py
tests/flatpak.py
tests/mock_env.py
tests/requirements.txt
tests/retry_mock.py
tests/stubs.py
tests/test_auth.py
tests/test_config.py
tests/test_dirs.py
tests/test_download.py
tests/test_inner.py
tests/test_metadata.py
tests/test_plugin.py
tests/test_schemas.py
tests/test_source.py
tests/test_util.py
tests/util.py
tests/cli/test_job.py
tests/cli/test_main.py
tests/cli/test_parser.py
tests/cli/test_task.py
tests/files/example-build.json
tests/files/example-koji-metadata-ppc64le.json
tests/files/example-koji-metadata-x86_64.json
tests/files/df-in-subdir/subdir/Dockerfile
tests/files/docker-hello-world/Dockerfile
tests/files/docker-hello-world/LICENSE
tests/files/docker-hello-world/README.md
tests/files/docker-hello-world/container.yaml
tests/files/docker-hello-world-error-build/Dockerfile
tests/files/docker-hello-world-error-build/LICENSE
tests/files/docker-hello-world-error-build/README.md
tests/files/docker-hello-world-error-build/some/subdir/foo
tests/files/docker-hello-world-error-config/Dockerfile
tests/files/docker-hello-world-error-config/LICENSE
tests/files/docker-hello-world-error-config/README.md
tests/files/docker-hello-world-error-config/container.yaml
tests/files/docker-hello-world-multistage/Dockerfile
tests/files/docker-hello-world-multistage/container.yaml
tests/files/docker-hello-world-multistage-custom/Dockerfile
tests/files/docker-hello-world-multistage-custom/container.yaml
tests/files/docker-hello-world-multistage-custom_multiple/Dockerfile
tests/files/docker-hello-world-multistage-custom_multiple/container.yaml
tests/files/docker-hello-world-multistage-scratch/Dockerfile
tests/files/docker-hello-world-multistage-scratch/container.yaml
tests/files/docker-hello-world/some/subdir/foo
tests/mock/__init__.py
tests/plugins/__init__.py
tests/plugins/test_add_buildargs.py
tests/plugins/test_add_dockerfile.py
tests/plugins/test_add_filesystem.py
tests/plugins/test_add_flatpak_labels.py
tests/plugins/test_add_help.py
tests/plugins/test_add_image_content_manifest.py
tests/plugins/test_add_labels.py
tests/plugins/test_build_source_container.py
tests/plugins/test_bump_release.py
tests/plugins/test_cancel_build_reservation.py
tests/plugins/test_change_from_in_df.py
tests/plugins/test_check_and_set_platforms.py
tests/plugins/test_check_base_image.py
tests/plugins/test_check_user_settings.py
tests/plugins/test_compare_components.py
tests/plugins/test_distribution_scope.py
tests/plugins/test_export_operator_manifests.py
tests/plugins/test_fetch_docker_archive.py
tests/plugins/test_fetch_maven_artifacts.py
tests/plugins/test_fetch_sources.py
tests/plugins/test_flatpak_create_dockerfile.py
tests/plugins/test_flatpak_create_oci.py
tests/plugins/test_flatpak_update_dockerfile.py
tests/plugins/test_gather_builds_metadata.py
tests/plugins/test_generate_sbom.py
tests/plugins/test_group_manifests.py
tests/plugins/test_hermeto_init.py
tests/plugins/test_hermeto_postprocess.py
tests/plugins/test_hide_files.py
tests/plugins/test_inject_parent_image.py
tests/plugins/test_inject_yum_repos.py
tests/plugins/test_koji_import.py
tests/plugins/test_koji_parent.py
tests/plugins/test_koji_tag_build.py
tests/plugins/test_maven_url_sources_metadata.py
tests/plugins/test_pin_operator_digests.py
tests/plugins/test_push_floating_tags.py
tests/plugins/test_pyrpkg_fetch_artefacts.py
tests/plugins/test_resolve_composes.py
tests/plugins/test_resolve_remote_source.py
tests/plugins/test_rpmqa.py
tests/plugins/test_sendmail.py
tests/plugins/test_store_metadata.py
tests/plugins/test_tag_and_push.py
tests/plugins/test_tag_from_config.py
tests/plugins/test_verify_media_types.py
tests/tasks/test_binary_container_build.py
tests/tasks/test_clone.py
tests/tasks/test_common.py
tests/tasks/test_plugin_based.py
tests/tasks/test_sources.py
tests/utils/__init__.py
tests/utils/test_cachito.py
tests/utils/test_hermeto.py
tests/utils/test_imageutil.py
tests/utils/test_koji.py
tests/utils/test_odcs.py
tests/utils/test_operator.py
tests/utils/test_pnc.py
tests/utils/test_remote_host.py
tests/utils/test_retries.py
tests/utils/test_rpm.py
tests/utils/test_yum.py