ansible-builder icon indicating copy to clipboard operation
ansible-builder copied to clipboard

Expose a way to exclude deps

Open sivel opened this issue 1 year ago • 0 comments

Note: This is based off of https://github.com/ansible/ansible-builder/pull/645 right now

At the moment, this is only fully wired up for python deps, as it was kind of an experiment.

---
version: 3.1

images:
  base_image:
    name: quay.io/centos/centos:stream9

dependencies:
  python_interpreter:
    package_system: python3.11
    python_path: /usr/bin/python3.11

  ansible_core:
    package_pip: ansible-core

  ansible_runner:
    package_pip: ansible-runner

  galaxy:
    collections:
      - name: community.docker

  exclude:
    python:
      - docker

sivel avatar Mar 14 '24 17:03 sivel