# dragonwell-docker **Repository Path**: cycloctane/dragonwell-docker ## Basic Information - **Project Name**: dragonwell-docker - **Description**: dragonwell jdk 容器镜像 Dockerfiles - **Primary Language**: Docker - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-12-05 - **Last Updated**: 2025-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: Docker, Java, jdk, dragonwell ## 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 ```