summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Charles <me@lucascharles.me>2019-03-22 22:13:21 +0000
committerLucas Charles <me@lucascharles.me>2019-03-22 22:13:21 +0000
commit05f60402e55382714d7bb33a37b6fe103af0ed94 (patch)
treee10eea93b2ab0fbae02956c1ed74c61a78184ba9
parentfddc574141339a76e2426f628b4f204668d63e27 (diff)
Update Dockerfile
Remove cert-check bypass when fetching JDK11
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c4dac87..359fef3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ ENV LICENSE_FINDER_VERSION $LICENSE_FINDER_VERSION
# Install JDK 11
RUN cd /tmp && \
- wget --quiet --no-cookies --no-check-certificate https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.2_9.tar.gz -O jdk-11.tgz && \
+ wget --quiet --no-cookies https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.2_9.tar.gz -O jdk-11.tgz && \
tar xf /tmp/jdk-11.tgz && \
mv jdk-11.0.2+9 /usr/lib/jvm/adoptopen_jdk11 && \
rm /tmp/jdk-11.tgz