1
0
mirror of synced 2026-08-07 07:56:55 +00:00

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
+3 -1
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 \