From c184ba2b2c3a7f42b9ba8847ee5cf50ec1a5a39d Mon Sep 17 00:00:00 2001 From: Cam Saul <github@camsaul.com> Date: Thu, 13 Feb 2020 15:58:14 -0800 Subject: [PATCH] Use JDK instead of JRE to build Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98cc01490d8..a371387b677 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ################### # Build currently doesn't work on > Java 11 (i18n utils are busted) so build on 8 until we fix this -FROM adoptopenjdk/openjdk8:alpine-jre as builder +FROM adoptopenjdk/openjdk8:alpine as builder WORKDIR /app/source -- GitLab