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

nwang pushed a commit to tag 0.20.3-incubating-rc3-test2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 8d800f59625fa639e548b930afdef3ddf3acd86e
Author: Ning Wang <[email protected]>
AuthorDate: Sat May 16 22:58:48 2020 -0700

    fix ubuntu 16.04 docker file
---
 docker/compile/Dockerfile.ubuntu16.04 | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/docker/compile/Dockerfile.ubuntu16.04 
b/docker/compile/Dockerfile.ubuntu16.04
index a3a2265..dbf7b70 100644
--- a/docker/compile/Dockerfile.ubuntu16.04
+++ b/docker/compile/Dockerfile.ubuntu16.04
@@ -21,6 +21,10 @@ FROM ubuntu:16.04
 ENV TARGET_PLATFORM ubuntu
 ENV bazelVersion 3.0.0
 
+RUN apt-get update && apt-get install -y software-properties-common
+
+RUN add-apt-repository ppa:openjdk-r/ppa
+
 RUN apt-get update && apt-get -y install \
       automake \
       build-essential \
@@ -31,12 +35,15 @@ RUN apt-get update && apt-get -y install \
       libtool-bin \
       libunwind8 \
       libunwind-setjmp0-dev \
+      pkg-config \
       python-dev \
       libcppunit-dev \
       tree \
       zip \
       unzip \
-      wget \
+      wget
+
+RUN apt-get update && apt-get -y install \
       openjdk-11-jdk-headless
 
 ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64

Reply via email to