update java samples to use eclipse temurin instead of opendjdk (#245)

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours
2022-05-16 22:19:01 +02:00
committed by GitHub
parent ebd478bc39
commit ecef5caea7
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
FROM maven:3.6.3-jdk-11 AS build
FROM --platform=$BUILDPLATFORM maven:3.8.5-eclipse-temurin-17 AS build
WORKDIR /workdir/server
COPY pom.xml /workdir/server/pom.xml
RUN mvn dependency:go-offline
@@ -7,7 +7,7 @@ COPY src /workdir/server/src
RUN mvn --batch-mode clean compile assembly:single
FROM openjdk:11-jre-slim
FROM eclipse-temurin:17-jre-focal
ARG DEPENDENCY=/workdir/server/target
EXPOSE 8080
COPY --from=build ${DEPENDENCY}/app.jar /app.jar