Alpine with jdk11 as base docker image

Viewed 4606

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...

  1. Use the 11-jdk-focal from Temurin?
  2. Build my own alpine image and add jdk11 to it?
  3. Use any other alternative provider?

References:

1 Answers
Related