From 292e50c22bb8623f258ef69f3364813649a15ea6 Mon Sep 17 00:00:00 2001 From: Brandon Ros Date: Sun, 31 May 2020 23:55:51 -0400 Subject: [PATCH] libssl-dev --- linux-x64/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/linux-x64/Dockerfile b/linux-x64/Dockerfile index c87c35b..a9c1797 100644 --- a/linux-x64/Dockerfile +++ b/linux-x64/Dockerfile @@ -1,9 +1,11 @@ FROM dockcross/base:latest MAINTAINER Matt McCormick "matt.mccormick@kitware.com" -RUN apt-get update && apt-get -y install \ - libelf-dev && \ - apt-get clean --yes +RUN apt-get update && \ + apt-get -y install \ + libelf-dev \ + libssl-dev \ + && apt-get clean --yes ENV CROSS_TRIPLE x86_64-linux-gnu ENV CROSS_ROOT /usr/bin