Introducing our new CEO Don Johnson - Read More

arm64v8/sapmachine

By arm64v8

Updated 10 days ago

Official SapMachine Docker Image, SAP's build of OpenJDK.

Image
Languages & Frameworks
0

50K+

Note: this is the "per-architecture" repository for the arm64v8 builds of the sapmachine official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.

Quick reference

Supported tags and respective Dockerfile links

arm64v8/sapmachine build status badge

Quick reference (cont.)

Overview

SapMachine is a binary distribution of the Open Java Development Kit (OpenJDK). It is built, quality tested and long-term supported by SAP.

SapMachine is the default Java runtime for SAP's Business Technology Platform and it is also supported as a Standard JRE in the Cloud Foundry Java Build Pack.

For more information see the SapMachine website.

Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates.

logo

How to use this Image

You can pull and test the image with the following commands:

docker pull arm64v8/sapmachine:latest
docker run -it arm64v8/sapmachine:latest java -version

You can also use the SapMachine image as a base image to run your own jar file:

FROM arm64v8/sapmachine:latest
RUN mkdir /opt/myapp
COPY myapp.jar /opt/myapp
CMD ["java", "-jar", "/opt/myapp/myapp.jar"]

You can then build and run your own Docker image:

docker build -t myapp .
docker run -it --rm myapp

License

The Dockerfiles and associated scripts are licensed under the Apache License 2.0.

Licenses for the SapMachine product installed within the images:

SapMachine is licensed under the GNU General Public License (GPL) version with the "CLASSPATH" exception.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's sapmachine/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Docker Pull Command

docker pull arm64v8/sapmachine