HADOOP-12626. Intel ISA-L libraries should be added to the Dockerfile (Kai Zheng via cmccabe)

This commit is contained in:
Colin Patrick Mccabe 2016-03-18 12:17:32 -07:00
parent 92b7e0d413
commit fbe3e86970
1 changed files with 8 additions and 0 deletions

View File

@ -45,6 +45,14 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
# See http://wiki.apache.org/commons/VfsProblems
RUN cd /usr/share/maven/lib && ln -s ../../java/commons-lang.jar .
######
# Install ISA-L library
######
RUN curl -L http://http.us.debian.org/debian/pool/main/libi/libisal/libisal2_2.15.0-2_amd64.deb \
-o /opt/libisal2_2.15.0-2_amd64.deb && \
dpkg -i /opt/libisal2_2.15.0-2_amd64.deb
#######
# Oracle Java
#######