Merge pull request #30748 from rfigueroa

* pr/30748:
  Use eclipse-temurin in docker samples

Closes gh-30748
This commit is contained in:
Stephane Nicoll 2022-04-20 08:22:46 +02:00
commit e1ad657888
1 changed files with 2 additions and 2 deletions

View File

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