File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,11 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
3434 # - https://data.safetycli.com/v/70612/97c/ \
3535 # NOTE: This ignored vulnerability (71064) was detected in requests, \
3636 # but the upgraded version doesn't support the use case (protocol we are using).\
37- # Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688
38- && pipenv check --ignore 70612 --ignore 71064 \
37+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688 \
38+ # NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
39+ # but hasn't been fixed upstream yet.\
40+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
41+ && pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
3942 && dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
4043 && dnf clean all \
4144 && rm -rf /var/cache/dnf
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
3131 # NOTE: This ignored vulnerability (71064) was detected in requests, \
3232 # but the upgraded version doesn't support the use case (protocol we are using).\
3333 # Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688
34- && pipenv check --ignore 70612 --ignore 71064 \
34+ # NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
35+ # but hasn't been fixed upstream yet.\
36+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
37+ && pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
3538 && dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
3639 && dnf clean all \
3740 && rm -rf /var/cache/dnf
You can’t perform that action at this time.
0 commit comments