16 lines
631 B
Plaintext
16 lines
631 B
Plaintext
# the first stage of our build will extract the layers
|
|
FROM adoptopenjdk:14-jre-hotspot as builder
|
|
WORKDIR application
|
|
ARG JAR_FILE=target/*.jar
|
|
COPY ${JAR_FILE} application.jar
|
|
RUN java -Djarmode=layertools -jar application.jar extract
|
|
|
|
# the second stage of our build will copy the extracted layers
|
|
FROM adoptopenjdk:14-jre-hotspot
|
|
WORKDIR application
|
|
COPY --from=builder application/dependencies/ ./
|
|
COPY --from=builder application/spring-boot-loader/ ./
|
|
COPY --from=builder application/snapshot-dependencies/ ./
|
|
COPY --from=builder application/application/ ./
|
|
ENTRYPOINT ["java", "org.springframework.boot.loader.JarLauncher"]
|