Home > Mobile >  Does Docker alpine image support openjdk19
Does Docker alpine image support openjdk19

Time:11-17

Does Docker alpine image support openjdk19. If yes how do we install openjdk19 using Docker alpine image 3.16.2. I am able to install openjdk11 but not openjdk19.

CodePudding user response:

use this image openjdk:19-alpine

https://hub.docker.com/layers/openjdk/library/openjdk/19-alpine/images/sha256-5bf18c827959c2d7b56b27328547faeefba886f23be35c0fe2093a5353135d99?context=explore

CodePudding user response:

You've got this a little backwards.

You're looking for someone that produces a supported image of OpenJDK 19 with an Alpine Linux image.

The Eclipse Temurin project supports official builds of OpenJDK in Docker, and it also comes with an Alpine image.

Be very careful, given that it is up to this maintainer to decide what base images they choose to use, and they might drop support for Alpine.

  • Related