Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iv-cores/image-corretto-ubuntu
Amazon Corretto JDK + Ubuntu Jammy
https://github.com/iv-cores/image-corretto-ubuntu
docker-image
Last synced: 16 days ago
JSON representation
Amazon Corretto JDK + Ubuntu Jammy
- Host: GitHub
- URL: https://github.com/iv-cores/image-corretto-ubuntu
- Owner: iv-cores
- License: apache-2.0
- Created: 2024-07-26T06:24:43.000Z (5 months ago)
- Default Branch: 21-jammy
- Last Pushed: 2024-08-27T06:17:06.000Z (4 months ago)
- Last Synced: 2024-11-08T10:50:58.489Z (about 2 months ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Amazon Corretto JDK + Ubuntu Jammy
This Docker image is designed to containerize the build environments for Java applications using Amazon Corretto JDK on Ubuntu Jammy. While Alpine is great, sometimes you need something a little more feature-rich.
## Features
- **Base OS**: Ubuntu Jammy
- **Java Development Kit**: Amazon Corretto JDK 21## Usage
The following is a usage example to build a project in the current working directory using the Gradle wrapper.
```sh
docker run \
--rm \
--name "build-in-docker" \
--workdir "/build" \
--volume "$PWD:/build" \
--entrypoint "./gradlew" \
"registry.ivcode.org/corretto-ubuntu:21-jammy" \
clean build
```