Merge pull request from brandonros/patch-1

linux-x64: install libelf-dev + libssl-dev
This commit is contained in:
Matt McCormick
2020-06-02 09:03:26 -04:00
committed by GitHub

@ -1,6 +1,12 @@
FROM dockcross/base:latest
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
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
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \