Skip to content

Commit d049ae8

Browse files
committed
Merge branch '2.5.x' into 2.6.x
Closes gh-30749
2 parents ee8c443 + e1ad657 commit d049ae8

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-docs/src/docs/asciidoc/container-images

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/container-images/dockerfiles.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ Here is an example of a Dockerfile using `jarmode`.
3232

3333
[source,dockerfile,indent=0,subs="verbatim"]
3434
----
35-
FROM adoptopenjdk:11-jre-hotspot as builder
35+
FROM eclipse-temurin:11-jre as builder
3636
WORKDIR application
3737
ARG JAR_FILE=target/*.jar
3838
COPY ${JAR_FILE} application.jar
3939
RUN java -Djarmode=layertools -jar application.jar extract
4040
41-
FROM adoptopenjdk:11-jre-hotspot
41+
FROM eclipse-temurin:11-jre
4242
WORKDIR application
4343
COPY --from=builder application/dependencies/ ./
4444
COPY --from=builder application/spring-boot-loader/ ./

0 commit comments

Comments
 (0)