https://github.com/cycloctane/dragonwell-docker
Docker container image for Dragonwell JDK
https://github.com/cycloctane/dragonwell-docker
docker dragonwell java jdk
Last synced: 2 months ago
JSON representation
Docker container image for Dragonwell JDK
- Host: GitHub
- URL: https://github.com/cycloctane/dragonwell-docker
- Owner: Cycloctane
- License: mit
- Created: 2024-10-29T16:04:48.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-06T18:20:55.000Z (6 months ago)
- Last Synced: 2025-02-17T21:11:22.709Z (4 months ago)
- Topics: docker, dragonwell, java, jdk
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dragonwell Docker
Simple dockerfiles for creating [Alibaba Dragonwell JDK](https://dragonwell-jdk.io/) (Standard Edition) docker images.
| Version | Arch | Base Image | Version |
|---------|--------|------------------------------|-----------------------|
| 8 | x86_64 | debian bookworm | 8.23.22_jdk8u432 |
| 11 | x86_64 | debian bookworm, alpine 3.20 | 11.0.25.21.9 |
| 17 | x86_64 | debian bookworm, alpine 3.20 | 17.0.13.0.14+9 |
| 21 | x86_64 | debian bookworm, alpine 3.20 | 21.0.5.0.5+9 |## usage
Build dragonwell 21 alpine image:
```bash
docker build -t dragonwell:jdk21-alpine ./jdk21/alpine
```Build custom image with alternative openjdk binaries (e.g. Adoptium OpenJDK) and base image (e.g. ubuntu) using the "base" Dockerfile:
```bash
docker build -t $tag\
--build-arg DOWNLOAD_URL=$jdk_bin_tar_url\
--build-arg BASE_IMAGE=ubuntu:22.04\
./base
```