Merge pull request #1190 from dinogun/update_2_sr5fp11

Bump IBM Java version to 1.8.0_sr5fp11(8.0.5.11).
This commit is contained in:
Tianon Gravi 2018-04-09 17:28:13 -07:00 committed by GitHub
commit 7a83ab1fff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 14 deletions

View File

@ -1,6 +1,6 @@
### Overview
The images in this repository contain IBM® SDK, Java™ Technology Edition, version 1.8.0\_sr5fp10 (8.0-5.10). See [what's new](https://developer.ibm.com/javasdk/blog). See the license section for restrictions that relate to the use of this image. For more information about IBM® SDK, Java™ Technology Edition and API documentation as well as tutorials, recipes, and Java usage in IBM Cloud, see [IBM developerWorks](https://developer.ibm.com/javasdk/).
The images in this repository contain IBM® SDK, Java™ Technology Edition, version 1.8.0\_sr5fp11 (8.0-5.11). See [what's new](https://developer.ibm.com/javasdk/blog). See the license section for restrictions that relate to the use of this image. For more information about IBM® SDK, Java™ Technology Edition and API documentation as well as tutorials, recipes, and Java usage in IBM Cloud, see [IBM developerWorks](https://developer.ibm.com/javasdk/).
Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates.
@ -49,19 +49,6 @@ COPY japp.jar /opt/app
CMD ["java", "-jar", "/opt/app/japp.jar"]
```
To download the latest Java 9 Beta (Early Access) Image:
```console
docker pull %%IMAGE%%:9-ea2-sdk
```
```dockerfile
FROM %%IMAGE%%:jre
RUN mkdir /opt/app
COPY japp.jar /opt/app
CMD ["java", "-jar", "/opt/app/japp.jar"]
```
You can build and run the Docker Image as shown in the following example:
```console