awx_ee.yml 435 B

123456789101112131415161718
  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 omsdk
  6. RUN pip install omsdk --upgrade
  7. # install Ansible Galaxy collections
  8. RUN ansible-galaxy collection install -r /tmp/requirements.yml --collections-path /usr/share/ansible/collections
  9. # add certificates
  10. RUN update-ca-trust force-enable
  11. RUN chmod -R 0777 /usr/share/ansible/collections
  12. USER 1000