mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-27 05:43:11 +00:00
12 lines
341 B
Docker
12 lines
341 B
Docker
FROM quay.io/operator-framework/ansible-operator:v0.19.4
|
|
|
|
# Install Ansible requirements.
|
|
COPY requirements.yml ${HOME}/requirements.yml
|
|
RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \
|
|
&& chmod -R ug+rwx ${HOME}/.ansible
|
|
|
|
COPY watches.yaml ${HOME}/watches.yaml
|
|
|
|
COPY main.yml ${HOME}/main.yml
|
|
COPY roles/ ${HOME}/roles/
|