소스 검색

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

Colin Patrick Mccabe 9 년 전
부모
커밋
fbe3e86970
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      dev-support/docker/Dockerfile

+ 8 - 0
dev-support/docker/Dockerfile

@@ -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
 #######