java image, based on openjdk 8 with debian 9 slim
10K+
Dockerfile linksMaintained by:
the InsurIT Advisors Docker Maintainers
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
Jdk is a base image of openjdk java based on alpine linux, with updated ca-certificates and curl.
A simple Dockerfile can be used to generate a new image that includes the necessary content
FROM insurit/jdk
COPY some-app.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]
$ docker run -it --rm insurit/jdk /bin/ash
To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine image description for examples of how to install packages if you are unfamiliar).
Content type
Image
Digest
Size
89.7 MB
Last updated
about 8 years ago
docker pull insurit/jdk