From 7b95de41cee5490457450d173d60b0d6dbc2ed97 Mon Sep 17 00:00:00 2001 From: Frank Tornack Date: Mon, 27 Feb 2023 20:27:48 +0100 Subject: [PATCH] update to apache-ant-1.10.13 --- docker/Dockerfile.ArchLinux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.ArchLinux b/docker/Dockerfile.ArchLinux index 5b5dcc965..7b72d4fd5 100644 --- a/docker/Dockerfile.ArchLinux +++ b/docker/Dockerfile.ArchLinux @@ -12,7 +12,7 @@ ENV PATH="/usr/lib/jvm/default/bin:${PATH}" # set the JAVA_HOME variable ENV JAVA_HOME="/usr/lib/jvm/default" WORKDIR /opt -RUN curl "https://downloads.apache.org/ant/source/apache-ant-1.10.12-src.tar.gz" --output ant-src.tar.gz && \ +RUN curl "https://downloads.apache.org/ant/source/apache-ant-1.10.13-src.tar.gz" --output ant-src.tar.gz && \ tar -xzf ant-src.tar.gz && \ rm ant-src.tar.gz && \ mv apache-ant-* ant-src && \