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 6b8fded commit b07dc83Copy full SHA for b07dc83
cryptography-linux/Dockerfile
@@ -27,6 +27,15 @@ RUN \
27
fi
28
29
COPY --from=staticnodejs /out/ /staticnode/
30
+# As of OpenSSL 3.3.2 the perl List::Util module is too old in manylinux2014, so we
31
+# commit CPAN crimes
32
+RUN if [ -f /etc/redhat-release ] && grep -q "CentOS Linux release 7" /etc/redhat-release; then \
33
+ yum install -y perl-CPAN && \
34
+ yum -y clean all && \
35
+ rm -rf /var/cache/yum && \
36
+ echo | cpan && \
37
+ cpan List::Util; \
38
+ fi
39
ADD install_openssl.sh /root/install_openssl.sh
40
ADD openssl-version.sh /root/openssl-version.sh
41
RUN ./install_openssl.sh
0 commit comments