We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02de7ee commit bfea1a7Copy full SHA for bfea1a7
containers/Containerfile
@@ -6,6 +6,19 @@ FROM registry.fedoraproject.org/fedora:41
6
ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \
7
ANSIBLE_STDOUT_CALLBACK=debug
8
9
+RUN sed -i \
10
+ '/\[ evp_properties \]/a rh-allow-sha1-signatures = yes' \
11
+ /etc/ssl/openssl.cnf
12
+
13
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 rpm -q openssl
19
20
+RUN openssl s_client -servername mirrors.fedoraproject.org -connect mirrors.fedoraproject.org:443 < /dev/null
21
22
RUN dnf -y upgrade && \
23
dnf -y install ansible python3-pip && \
24
dnf clean all
0 commit comments