File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change
1
+ entries :
2
+ - description : >
3
+ Pinned pip3 to 21.1 in the ansible-operator image to fix https://github.com/pypa/pip/pull/9827
4
+ kind: bugfix
Original file line number Diff line number Diff line change @@ -21,9 +21,11 @@ ENV PIP_NO_CACHE_DIR=1 \
21
21
PIPENV_CLEAR=1
22
22
# Ensure fresh metadata rather than cached metadata, install system and pip python deps,
23
23
# and remove those not needed at runtime.
24
+ # pip3~=21.1 fixes a vulnerability described in https://github.com/pypa/pip/pull/9827.
24
25
RUN yum clean all && rm -rf /var/cache/yum/* \
25
26
&& yum update -y \
26
27
&& yum install -y libffi-devel openssl-devel python38-devel gcc python38-pip python38-setuptools \
28
+ && pip3 install --upgrade pip~=21.1.0 \
27
29
&& pip3 install pipenv==2020.11.15 \
28
30
&& pipenv install --deploy \
29
31
&& pipenv check \
You can’t perform that action at this time.
0 commit comments