Skip to content

Commit 69d1b02

Browse files
Merge pull request #263279 from brunoborges/patch-2
Update container-registry-java-quickstart.md
2 parents 02e6154 + aabaa0d commit 69d1b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-registry/container-registry-java-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Finally, you'll update your project configuration and use the command prompt to
115115
</properties>
116116
```
117117

118-
1. Update the `<plugins>` collection in the *pom.xml* file so that the `<plugin>` element contains and an entry for the `jib-maven-plugin`, as shown in the following example. Note that we are using a base image from the Microsoft Container Registry (MCR): `mcr.microsoft.com/java/jdk:8-zulu-alpine`, which contains an officially supported JDK for Azure. For other MCR base images with officially supported JDKs, see [Install the Microsoft Build of OpenJDK.](/java/openjdk/install)
118+
1. Update the `<plugins>` collection in the *pom.xml* file so that the `<plugin>` element contains and an entry for the `jib-maven-plugin`, as shown in the following example. Note that we are using a base image from the Microsoft Container Registry (MCR): `mcr.microsoft.com/openjdk/jdk:11-ubuntu`, which contains an officially supported JDK for Azure. For other MCR base images with officially supported JDKs, see [Install the Microsoft Build of OpenJDK.](/java/openjdk/install)
119119

120120
```xml
121121
<plugin>
@@ -124,7 +124,7 @@ Finally, you'll update your project configuration and use the command prompt to
124124
<version>${jib-maven-plugin.version}</version>
125125
<configuration>
126126
<from>
127-
<image>mcr.microsoft.com/java/jdk:8-zulu-alpine</image>
127+
<image>mcr.microsoft.com/openjdk/jdk:11-ubuntu</image>
128128
</from>
129129
<to>
130130
<image>${docker.image.prefix}/${project.artifactId}</image>

0 commit comments

Comments
 (0)