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

moon pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.8 by this push:
     new 51091e9  [ZEPPELIN-4338] Fix docker image build error
51091e9 is described below

commit 51091e9d93d9f3f9756bd78df3332bde26dde0ff
Author: Lee moon soo <m...@apache.org>
AuthorDate: Thu Sep 19 12:23:45 2019 -0700

    [ZEPPELIN-4338] Fix docker image build error
    
    ### What is this PR for?
    This PR fixes docker image build error using 
/script/docker/zeppelin/bin/Dockerfile
    
    ### What type of PR is it?
    Bug Fix
    
    ### What is the Jira issue?
    https://issues.apache.org/jira/browse/ZEPPELIN-4338
    
    ### Questions:
    * Does the licenses files need update? no
    * Is there breaking changes for older versions? no
    * Does this needs documentation? no
    
    Author: Lee moon soo <m...@apache.org>
    
    Closes #3455 from Leemoonsoo/ZEPPELIN-4338 and squashes the following 
commits:
    
    953102f32 [Lee moon soo] Add allow-unauthenticated
    
    (cherry picked from commit 7b9356142a196b4cb8399cd399613b302c410e03)
    Signed-off-by: Lee moon soo <m...@apache.org>
---
 scripts/docker/zeppelin/bin/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/docker/zeppelin/bin/Dockerfile 
b/scripts/docker/zeppelin/bin/Dockerfile
index 94cd3c8..3122a34 100644
--- a/scripts/docker/zeppelin/bin/Dockerfile
+++ b/scripts/docker/zeppelin/bin/Dockerfile
@@ -79,7 +79,7 @@ RUN echo "$LOG_TAG Install R related packages" && \
     gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9 && \
     gpg -a --export E084DAB9 | apt-key add - && \
     apt-get -y update && \
-    apt-get -y install r-base r-base-dev && \
+    apt-get -y --allow-unauthenticated install r-base r-base-dev && \
     R -e "install.packages('knitr', repos='http://cran.us.r-project.org')" && \
     R -e "install.packages('ggplot2', repos='http://cran.us.r-project.org')" 
&& \
     R -e "install.packages('googleVis', repos='http://cran.us.r-project.org')" 
&& \

Reply via email to