From a0e288d291a600767e386caf1f75ecafe081f8f6 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Tue, 12 May 2020 09:49:18 +0100 Subject: [PATCH] Selectively build OpenSSL components This skips documententation generation which should significantly speed up the build as those files are ignored anyway. Signed-off-by: Joe Groocock --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a1cc404..55dd29b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -107,7 +107,9 @@ RUN curl -sSL https://openssl.org/source/openssl-${OPENSSL_VER}.tar.gz \ shared \ zlib-dynamic \ no-rc5 \ - && make install \ + && make \ + install_sw \ + install_ssldirs \ && cp libssl*.so* libcrypto*.so* $PREFIX/usr/lib # Download and build curl