I am using ansible-builder to build an Execution Environment (EE) and I currently install dependencies via pip like this:
ansible_runner:
package_pip: ansible-runner==2.3.6
ansible_core:
package_pip: ansible-core==2.15.10
However, I need to install these and other packages from Debian repositories. Currently, the only workaround I have found is to use additional_build_steps like so:
additional_build_steps:
prepend_base:
- RUN apt -y install ansible-runner ansible-core
Is there a more elegant or officially supported method to use Debian repositories for installing system packages during the EE build without having to rely on these extra build steps?
Any insights or recommendations would be greatly appreciated! Thank you!