Fix build of CentOS stream docker image (#38824)

This commit is contained in:
Massimiliano Culpo 2023-07-12 10:55:43 +02:00 committed by GitHub
parent ca4c59cd77
commit fb223f034b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,11 +19,11 @@ RUN dnf update -y \
iproute \ iproute \
make \ make \
patch \ patch \
python38 \ python3.11 \
python38-pip \ python3.11-setuptools \
python38-setuptools \
unzip \ unzip \
&& pip3 install boto3 \ && python3.11 -m ensurepip \
&& pip3.11 install boto3 \
&& rm -rf /var/cache/dnf \ && rm -rf /var/cache/dnf \
&& dnf clean all && dnf clean all
{% endblock %} {% endblock %}