Skip to content
Open
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
11 changes: 6 additions & 5 deletions images/ansible-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ ENV PIP_NO_CACHE_DIR=1 \
# and remove those not needed at runtime.
RUN set -e && microdnf clean all && rm -rf /var/cache/dnf/* \
&& microdnf update -y \
&& microdnf install -y gcc libffi-devel openssl-devel python3.12-devel \
&& microdnf install -y gcc libffi-devel openssl-devel python3.12-devel which \
&& pushd /usr/local/bin && ln -sf ../../bin/python3.12 python3 && popd \
&& python3 -m ensurepip --upgrade \
&& pip3 install --upgrade pip~=23.3.2 \
&& pip3 install pipenv==2023.11.15 \
&& pip3 install --upgrade pip~=26.1.2 \
&& pip3 install pipenv==2026.6.2 pip-audit \
&& pipenv install --deploy \
&& pip3 install ansible_runner_http/ \
&& pipenv check \
&& microdnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
&& pipenv audit \
&& pip3 uninstall -y pipenv pip-audit pip \
&& microdnf remove -y gcc libffi-devel openssl-devel python3.12-devel which \
&& microdnf clean all \
&& rm -rf /var/cache/dnf

Expand Down
Loading
Loading