From 2d21d0f62db08eeaab1b6ff1d867b0ff1719bbaa Mon Sep 17 00:00:00 2001 From: Silvio Fricke Date: Tue, 8 Aug 2017 17:40:33 +0200 Subject: [PATCH] update openssl from 1.0.2j to 1.0.2l Signed-off-by: Silvio Fricke --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e9647f4..9277524 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ WORKDIR /home/rust/libs # Build a static library version of OpenSSL using musl-libc. This is # needed by the popular Rust `hyper` crate. -RUN VERS=1.0.2j && \ +RUN VERS=1.0.2l && \ curl -O https://www.openssl.org/source/openssl-$VERS.tar.gz && \ tar xvzf openssl-$VERS.tar.gz && cd openssl-$VERS && \ env CC=musl-gcc ./config --prefix=/usr/local/musl && \