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 jh...@apache.org on 2019/02/02 01:41:33 UTC

[hadoop] branch branch-2-jhung-test updated (b3e8e72 -> c12c0a8a)

This is an automated email from the ASF dual-hosted git repository.

jhung pushed a change to branch branch-2-jhung-test
in repository https://gitbox.apache.org/repos/asf/hadoop.git.


 discard b3e8e72  Default java 7 in Dockerfile. Also install openjdk8
     new c12c0a8a Default java 7 in Dockerfile. Also install openjdk8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b3e8e72)
            \
             N -- N -- N   refs/heads/branch-2-jhung-test (c12c0a8a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 dev-support/docker/Dockerfile | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org


[hadoop] 01/01: Default java 7 in Dockerfile. Also install openjdk8

Posted by jh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jhung pushed a commit to branch branch-2-jhung-test
in repository https://gitbox.apache.org/repos/asf/hadoop.git

commit c12c0a8a7b818b06ef2eaca72368512ee8c65609
Author: Jonathan Hung <jh...@linkedin.com>
AuthorDate: Fri Feb 1 17:19:54 2019 -0800

    Default java 7 in Dockerfile. Also install openjdk8
---
 dev-support/docker/Dockerfile | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile
index 6594c8b..c18ebc9 100644
--- a/dev-support/docker/Dockerfile
+++ b/dev-support/docker/Dockerfile
@@ -90,6 +90,16 @@ RUN apt-get -q update \
     && apt-get -q install -y --no-install-recommends openjdk-7-jdk \
     && apt-get clean \
     && rm -rf /var/lib/apt/lists/*
+RUN update-java-alternatives --set java-1.7.0-openjdk-amd64
+
+#######
+# OpenJDK 8
+#######
+# hadolint ignore=DL3008
+RUN apt-get -q update \
+    && apt-get -q install -y --no-install-recommends openjdk-8-jdk libbcprov-java \
+    && apt-get clean \
+    && rm -rf /var/lib/apt/lists/*
 
 ######
 # Install cmake 3.1.0 (3.5.1 ships with Xenial)


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org