This is an automated email from the ASF dual-hosted git repository. moon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 7b93561 [ZEPPELIN-4338] Fix docker image build error 7b93561 is described below commit 7b9356142a196b4cb8399cd399613b302c410e03 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 --- 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 b05df71..5cf0277 100644 --- a/scripts/docker/zeppelin/bin/Dockerfile +++ b/scripts/docker/zeppelin/bin/Dockerfile @@ -74,7 +74,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')" && \