Skip to content

Commit 62e35ee

Browse files
committed
Try to fix the ppc64le container build issues
Signed-off-by: Nikola Forró <[email protected]>
1 parent 02de7ee commit 62e35ee

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

containers/Containerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ FROM registry.fedoraproject.org/fedora:41
66
ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \
77
ANSIBLE_STDOUT_CALLBACK=debug
88

9+
RUN sed -i \
10+
'/\[ evp_properties \]/a rh-allow-sha1-signatures = yes' \
11+
/etc/ssl/openssl.cnf
12+
13+
RUN sed -i \
14+
-e 's/@SECLEVEL=2/@SECLEVEL=0/' \
15+
-e 's/rh-allow-sha1-signatures = no/rh-allow-sha1-signatures = yes/' \
16+
/usr/share/crypto-policies/DEFAULT/opensslcnf.txt
17+
18+
RUN openssl s_client -servername mirrors.fedoraproject.org -connect mirrors.fedoraproject.org:443 < /dev/null
19+
920
RUN dnf -y upgrade && \
1021
dnf -y install ansible python3-pip && \
1122
dnf clean all

0 commit comments

Comments
 (0)