We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e79257e + 64419f4 commit f769e80Copy full SHA for f769e80
ibm-semeru-runtimes/content.md
@@ -11,7 +11,7 @@ The IBM Semeru Runtimes are free production-ready open source binaries built wit
11
To run a pre-built japp.jar file with the latest OpenJDK 11, use the following Dockerfile:
12
13
```dockerfile
14
-FROM %%IMAGE%%:11
+FROM %%IMAGE%%:open-11-jdk
15
RUN mkdir /opt/app
16
COPY japp.jar /opt/app
17
CMD ["java", "-jar", "/opt/app/japp.jar"]
@@ -32,6 +32,6 @@ If you are using a distribution that we don't provide an image for you can copy
32
# Example
33
FROM <base image>
34
ENV JAVA_HOME=/opt/java/openjdk
35
-COPY --from=%%IMAGE%%:11 $JAVA_HOME $JAVA_HOME
+COPY --from=%%IMAGE%%:open-11-jdk $JAVA_HOME $JAVA_HOME
36
ENV PATH="${JAVA_HOME}/bin:${PATH}"
37
```
0 commit comments