From 5670b9f639d608d02c4acb6b103f2d92b4e129b2 Mon Sep 17 00:00:00 2001 From: ushkarev Date: Wed, 14 Aug 2024 15:26:19 +0100 Subject: [PATCH] NON-318: Build application using JDK (not JRE) base image (#337) Build application using JDK (not JRE) base image since gradle now complains about not finding the right toolchain --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8703f5c..9103e33b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM eclipse-temurin:21-jre-jammy AS builder +FROM --platform=$BUILDPLATFORM eclipse-temurin:21-jdk-jammy AS builder ARG BUILD_NUMBER ENV BUILD_NUMBER ${BUILD_NUMBER:-1_0_0}