Skip to content
Merged
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
5 changes: 1 addition & 4 deletions images/ansible-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
&& pip3 install --upgrade pip~=23.3.2 \
&& pip3 install pipenv==2023.11.15 \
&& pipenv install --deploy \
# NOTE: This ignored vulnerability (71064) was detected in requests, \
# but the upgraded version doesn't support the use case (protocol we are using).\
# Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688 \
&& pipenv check --ignore 71064 --ignore 77680 \
&& pipenv check \
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf
Expand Down
2 changes: 1 addition & 1 deletion images/ansible-operator/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ansible-runner-http = "~=1.0.0"
ansible-core = "~=2.18.3"
urllib3 = "~=2.5.0"
kubernetes = "==33.1.0"
requests = "~=2.31.0"
requests = "~=2.32.5"

[dev-packages]

Expand Down
10 changes: 5 additions & 5 deletions images/ansible-operator/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions images/ansible-operator/pipfile.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
&& pip3 install --upgrade pip~=23.3.2 \
&& pip3 install pipenv==2023.11.15 \
&& pipenv lock \
# NOTE: This ignored vulnerability (71064) was detected in requests, \
# but the upgraded version doesn't support the use case (protocol we are using).\
# Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688
&& pipenv check --ignore 71064 --ignore 77680 \
&& pipenv check \
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf
Expand Down