Skip to content
Draft
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ RUN alternatives --set python /usr/bin/python3.11 \
&& alternatives --install /usr/bin/pip pip /usr/bin/pip3.11 1
RUN pip install --no-cache-dir --upgrade pip
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt

RUN pip install --no-cache-dir jmespath-community \
&& pip install --no-cache-dir -r /tmp/requirements.txt

# Galaxy collections and roles

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dnspython
equinix_metal
dumb-init
jsonpatch
jmespath-community
kubernetes>=12.0.0
ncclient
# Fix openstacksdk version till this issue is solved: https://storyboard.openstack.org/#!/story/2010908
Expand Down
Loading