Skip to content

Commit

Permalink
adding adding ignore for CVE-2024-8775 (#111)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam D. Cornett <[email protected]>
  • Loading branch information
acornett21 authored Oct 22, 2024
1 parent acf7594 commit 4e0c617
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions images/ansible-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
# - https://data.safetycli.com/v/70612/97c/ \
# 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 70612 --ignore 71064 \
# Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688 \
# NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
# but hasn't been fixed upstream yet.\
# Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
&& pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf
Expand Down
5 changes: 4 additions & 1 deletion images/ansible-operator/pipfile.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
# 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 70612 --ignore 71064 \
# NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
# but hasn't been fixed upstream yet.\
# Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
&& pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
&& dnf clean all \
&& rm -rf /var/cache/dnf
Expand Down

0 comments on commit 4e0c617

Please sign in to comment.