awx_ee.yml 451 B

1234567891011121314151617181920
  1. FROM quay.io/ansible/awx-ee:0.2.0
  2. USER root
  3. # add Ansible galaxy dependencies
  4. ADD requirements.yml /tmp/requirements.yml
  5. # install packages
  6. RUN pip install --upgrade \
  7. omsdk \
  8. netaddr
  9. # install Ansible Galaxy collections
  10. RUN ansible-galaxy collection install -r /tmp/requirements.yml --collections-path /usr/share/ansible/collections
  11. # add certificates
  12. RUN update-ca-trust force-enable
  13. RUN chmod -R 0777 /usr/share/ansible/collections
  14. USER 1000