You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by wa...@apache.org on 2016/03/21 21:14:51 UTC

[38/50] [abbrv] hadoop git commit: HADOOP-12626. Intel ISA-L libraries should be added to the Dockerfile (Kai Zheng via cmccabe)

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


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/fbe3e869
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/fbe3e869
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/fbe3e869

Branch: refs/heads/YARN-3368
Commit: fbe3e86970cda0390eaf3c4820539a6dcb957926
Parents: 92b7e0d
Author: Colin Patrick Mccabe <cm...@cloudera.com>
Authored: Fri Mar 18 12:17:32 2016 -0700
Committer: Colin Patrick Mccabe <cm...@cloudera.com>
Committed: Fri Mar 18 12:17:32 2016 -0700

----------------------------------------------------------------------
 dev-support/docker/Dockerfile | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/fbe3e869/dev-support/docker/Dockerfile
----------------------------------------------------------------------
diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile
index e80df29..5c8bdfa 100644
--- a/dev-support/docker/Dockerfile
+++ b/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
 #######