Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tools/ansible-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.
apt-get update && apt-get install google-cloud-sdk -y

#Installing ansible
RUN pip install ansible==2.7.3
RUN pip install --no-cache-dir ansible==2.7.3

RUN pip install ruamel.yaml.clib==0.1.2
RUN pip install --no-cache-dir ruamel.yaml.clib==0.1.2

#Installing openshift
RUN pip install openshift==0.11.2
RUN pip install --no-cache-dir openshift==0.11.2

#Installing jmespath
RUN pip install jmespath
RUN pip install --no-cache-dir jmespath

RUN touch /mnt/parameters.yml

Expand Down