Docker image for Ant builds.
10K+
Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. Ant supplies a number of built-in tasks allowing to compile, assemble, test and run Java applications. Ant can also be used effectively to build non Java applications, for instance C or C++ applications. More generally, Ant can be used to pilot any type of process which can be described in terms of targets and tasks.
For many simple projects, you may find it inconvenient to write a complete Dockerfile. In such cases, you can run a Ant project by using the Ant Docker image directly, passing a Ant command to docker run:
docker run -it --rm -v "$(pwd)":/src brandonstevens/ant
Ant includes two environment variables that can be set when you run the container.
(Taken from https://ant.apache.org/manual/running.html)
docker run -it --rm -v "$(pwd)":/src -e "ANT_OPTS=-Xmx256m" -e "ANT_ARGS=-buildfile build-all.xml" brandonstevens/ant
Create a Dockerfile at the root of your project:
FROM brandonstevens/ant
ADD . /src
WORKDIR /src
RUN ant
WORKDIR /src/build
CMD ["java", "-jar", "project.jar"]
Content type
Image
Digest
sha256:83448f771…
Size
243.1 MB
Last updated
almost 11 years ago
docker pull brandonstevens/ant