I have a base Dockerfile
used by a bunch of services, looking like this:
FROM adoptopenjdk/openjdk11:jdk-11.0.11_9-alpine-slim
There were some security fixes for Linux Alpine, and I'd like to include them in my base image. Looking for a new image on AdoptOpenJDK's official page, I've found that these tags are deprecated as of 1st August 2021 in favour of the Eclipse Temurin project.
Eclipse Temurin does not have an alpine-based jdk11 image. Do I...
- Use the 11-jdk-focal from Temurin?
- Build my own alpine image and add jdk11 to it?
- Use any other alternative provider?
References: