summaryrefslogtreecommitdiff
path: root/docker/Dockerfile.ArchLinux
diff options
context:
space:
mode:
authorFrank Tornack <frankenstein91.info@googlemail.com>2023-03-06 17:58:54 +0100
committerFrank Tornack <frankenstein91.info@googlemail.com>2023-03-06 17:58:54 +0100
commit2aa3181e7fc20e265faef785941ba296df52e259 (patch)
tree0b92371cb1a597b91437f28cdfb4630fa2ef9703 /docker/Dockerfile.ArchLinux
parent7b95de41cee5490457450d173d60b0d6dbc2ed97 (diff)
build fix
imported the changes from https://github.com/apache/ant/commit/541a1d2448af3e95134f79a970a608403deab00a by hand
Diffstat (limited to 'docker/Dockerfile.ArchLinux')
-rw-r--r--docker/Dockerfile.ArchLinux4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile.ArchLinux b/docker/Dockerfile.ArchLinux
index 7b72d4fd5..e1b637587 100644
--- a/docker/Dockerfile.ArchLinux
+++ b/docker/Dockerfile.ArchLinux
@@ -1,7 +1,7 @@
FROM archlinux:latest
# update the system and clean up
RUN pacman -Syu --noconfirm && pacman -Scc --noconfirm
-RUN pacman -Sy java-runtime-common --noconfirm && pacman -Scc --noconfirm
+RUN pacman -Sy java-runtime-common wget --noconfirm && pacman -Scc --noconfirm
# download latest version of graalvm and move it to /lib/jvm/java-{javaversion}-graalvm
RUN bash <(curl -sL https://get.graalvm.org/jdk) --no-progress && \
JAVAVERSION=$(ls ./ | grep graalvm | cut -d'-' -f3 | sed 's/java//g') && \
@@ -17,6 +17,8 @@ tar -xzf ant-src.tar.gz && \
rm ant-src.tar.gz && \
mv apache-ant-* ant-src && \
cd ant-src && \
+wget -O fetch.xml "https://raw.githubusercontent.com/apache/ant/541a1d2448af3e95134f79a970a608403deab00a/fetch.xml" && \
+wget -O lib/libraries.properties "https://raw.githubusercontent.com/apache/ant/541a1d2448af3e95134f79a970a608403deab00a/lib/libraries.properties" && \
mkdir /opt/ant && \
sh build.sh -f fetch.xml -Ddest=optional && \
sh build.sh -Ddist.dir=/opt/ant dist && \