pan3793 commented on code in PR #4753:
URL: https://github.com/apache/zeppelin/pull/4753#discussion_r1556992050
##########
scripts/docker/zeppelin/bin/Dockerfile:
##########
@@ -24,22 +24,23 @@ ENV LOG_TAG="[ZEPPELIN_${Z_VERSION}]:" \
HOME="/opt/zeppelin" \
LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8 \
- JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 \
+ JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 \
ZEPPELIN_ADDR="0.0.0.0"
RUN echo "$LOG_TAG install basic packages" && \
apt-get -y update && \
# Switch back to install JRE instead of JDK when moving to JDK9 or later.
- DEBIAN_FRONTEND=noninteractive apt-get install -y locales language-pack-en
tini openjdk-8-jdk-headless wget unzip && \
+ DEBIAN_FRONTEND=noninteractive apt-get install -y locales language-pack-en
tini openjdk-11-jdk-headless wget unzip && \
# Cleanup
rm -rf /var/lib/apt/lists/* && \
apt-get autoclean && \
apt-get clean
+
Review Comment:
nit: unnecessary change
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]