From 04cf851b8052646076820999db92c2a740204701 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Thu, 11 Jan 2024 07:16:23 -0300 Subject: [PATCH] chore(ide): simplify openssl install process --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 29e94c6..f9923c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -187,8 +187,7 @@ RUN ${XDG_DATA_HOME}/rtx/bin/rtx plugins install --force --yes \ # example: KERL_CONFIGURE_OPTIONS="-with-ssl=${HOME}/.local/lib/ssl" asdf install RUN mkdir -p ${HOME}/.local/src \ && cd ${HOME}/.local/src \ - && wget https://www.openssl.org/source/openssl-1.1.1m.tar.gz \ - && tar -xzf openssl-1.1.1m.tar.gz \ + && curl -L https://www.openssl.org/source/openssl-1.1.1m.tar.gz | tar -xz \ && cd openssl-1.1.1m \ && ./config --prefix=${HOME}/.local/lib/ssl --openssldir=${HOME}/.local/lib/ssl shared zlib \ && make \