Skip to content

Commit 8fcb71a

Browse files
richardlaudanielleadams
authored andcommitted
build: update openssl config generator Dockerfile
The `deps/openssl/config/generate_headers.pl` imports `Text::Template` but that Perl module is not present in the default Perl installation in the Dockerfile and needs to be explicitly installed. PR-URL: #41177 Refs: quictls/openssl#69 Refs: https://mta.openssl.org/pipermail/openssl-announce/2021-December/000212.html Reviewed-By: Danielle Adams <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Derek Lewis <[email protected]>
1 parent 93111e4 commit 8fcb71a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

deps/openssl/config/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ RUN buildDeps='binutils build-essential vim nasm git' \
77
&& apt-get install -y --no-install-recommends --force-yes $buildDeps \
88
&& apt-get clean \
99
&& apt-get autoremove -y \
10+
&& cpan install Text::Template \
1011
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1112

1213
WORKDIR /node

0 commit comments

Comments
 (0)