Liberica is an open-source Java implementation by BellSoft
105
Liberica is built, tested, supported and made available by BellSoft.
This repository contains Debian Docker images of Liberica OpenJDK and available for following architectures:
built by the command (correct FROM=debian:stable):
cd /tmp
mkdir bell-sw
cd bell-sw
git clone https://github.com/bell-sw/Liberica
cd Liberica
git checkout 11.0.9.1+1
cd docker/repos/liberica-openjdk-debian/11
docker build -t liberica-openjdk-debian
--build-arg LIBERICA_VERSION=11.0.9.1
--build-arg LIBERICA_BUILD=1
--build-arg LIBERICA_USE_LITE=0
.
For example, you can run a Liberica OpenJDK 11 container with the following command:
docker run -it --rm vgrusdev/liberica-openjdk-debian:ppc64le-11.0.9.1-1 java -version
To run some application you can create Dockerfile, based on bellsoft/liberica-openjdk-debian image or mount volume with your code/applicaiton, for example:
docker run -it --rm -v /home/user/project/:/data vgrusdev/liberica-openjdk-debian:ppc64le-11.0.9.1-1 java -jar /data/MyApp.jar
Content type
Image
Digest
Size
230.1 MB
Last updated
almost 6 years ago
docker pull vgrusdev/liberica-openjdk-debian:ppc64le-11.0.9.1-1