123456789101112131415161718 |
- FROM quay.io/ansible/awx-ee:0.2.0
- USER root
- ADD requirements.yml /tmp/requirements.yml
- RUN pip install omsdk --upgrade
- RUN ansible-galaxy collection install -r /tmp/requirements.yml --collections-path /usr/share/ansible/collections
- RUN update-ca-trust force-enable
- RUN chmod -R 0777 /usr/share/ansible/collections
- USER 1000
|