awesome-compose/sparkjava-mysql/backend/Dockerfile
Guillaume Lours ecef5caea7
update java samples to use eclipse temurin instead of opendjdk (#245)
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
2022-05-16 22:19:01 +02:00

15 lines
401 B
Docker
Executable File

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
COPY src /workdir/server/src
RUN mvn --batch-mode clean compile assembly:single
FROM eclipse-temurin:17-jre-focal
ARG DEPENDENCY=/workdir/server/target
EXPOSE 8080
COPY --from=build ${DEPENDENCY}/app.jar /app.jar
CMD java -jar /app.jar