Skip to content

Commit fb8ddb1

Browse files
committed
Ignore vulnerability
Signed-off-by: Neo2308 <[email protected]>
1 parent 3695a58 commit fb8ddb1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

images/ansible-operator/Dockerfile

+5-2
Original file line numberDiff line numberDiff 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

images/ansible-operator/pipfile.Dockerfile

+4-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)