Table of Contents |
---|
...
To build a Java Docker image, we build a base image based on Alpine Linux and OpenJDK using docker-alpine-java. The base image is built every night so we should have the latest
Image | Description | Jenkins | Schedule |
---|---|---|---|
docker-alpine-java | This is the base image based on Alpine Linux. It is built on the latest nimmis/alpine-micro and then applies the latest OS patches before installing the JDK | docker-alpine-java | Nightly |
hee-alpine-java-docker | This is a layer of customisation on top of the base JDK which installs a trust store and some additional scripts. | hee-alpine-java-docker | Nightly, triggered by successful docker-alpine-java build |
repository.lin.nhs.uk:5000/hee | Our applications are built on top of the hee-build-java-docker image when changes are pushed to Github. | On Git Push |
We need to pull updates from the upstream nimmis/docker-alpine-java Docker image when they become available.
...