Merge branch '2.6.x' into 2.7.x

Closes gh-30750
pull/30774/head
Stephane Nicoll 3 years ago
commit 38c2a5c14b

@ -32,13 +32,13 @@ Here is an example of a Dockerfile using `jarmode`.
[source,dockerfile,indent=0,subs="verbatim"] [source,dockerfile,indent=0,subs="verbatim"]
---- ----
FROM adoptopenjdk:11-jre-hotspot as builder FROM eclipse-temurin:11-jre as builder
WORKDIR application WORKDIR application
ARG JAR_FILE=target/*.jar ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} application.jar COPY ${JAR_FILE} application.jar
RUN java -Djarmode=layertools -jar application.jar extract RUN java -Djarmode=layertools -jar application.jar extract
FROM adoptopenjdk:11-jre-hotspot FROM eclipse-temurin:11-jre
WORKDIR application WORKDIR application
COPY --from=builder application/dependencies/ ./ COPY --from=builder application/dependencies/ ./
COPY --from=builder application/spring-boot-loader/ ./ COPY --from=builder application/spring-boot-loader/ ./

Loading…
Cancel
Save