fix(docker): set java home, use JDK 14 (#352)

This commit is contained in:
Yury Semikhatsky 2021-03-22 16:31:52 -07:00 committed by GitHub
parent b1b5b43948
commit 31c029a50a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# === INSTALL JDK and Maven ===
RUN apt-get update && apt-get install -y --no-install-recommends \
openjdk-8-jdk maven
openjdk-14-jdk maven
ENV JAVA_HOME=/usr/lib/jvm/java-14-openjdk-amd64
# Install utilities required for downloading driver
RUN apt-get update && apt-get install -y --no-install-recommends \