s390x/gradle

By s390x

Updated 3 days ago

Gradle is a build tool with a focus on build automation and support for multi-language development.

Image
Developer Tools

500K+

Note: this is the "per-architecture" repository for the s390x builds of the gradle official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.

Quick reference

Supported tags and respective Dockerfile links

s390x/gradle build status badge

Quick reference (cont.)

What is Gradle?

Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins.

logo

How to use this image

Building a Gradle project

Run this from the directory of the Gradle project you want to build.

docker run --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project s390x/gradle gradle <gradle-task>

Note the above command runs using uid/gid 1000 (user gradle) to avoid running as root.

If you are mounting a volume and the uid/gid running Docker is not 1000, you should run as user root (-u root). root is also the default, so you can also simply not specify a user.

Java 21 support

Java 21 does not currently support build customizations using Kotlin (such as using the kotlin-dsl plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release.

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's gradle/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Docker Pull Command

docker pull s390x/gradle