From 6e70a5017790bee1fff8c6ca3944b34a5e5d128d Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Tue, 31 Oct 2023 11:09:12 +0100 Subject: [PATCH] Bump to Maven 3.8.8 (#265) Maven 3.8.7 is not available for download anymore, so the previous URL would return a 404 --- src/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docker/Dockerfile b/src/docker/Dockerfile index eb5c9ad54..480831c56 100644 --- a/src/docker/Dockerfile +++ b/src/docker/Dockerfile @@ -45,8 +45,8 @@ RUN dpkg --add-architecture i386 && apt-get update \ && apt-get --assume-yes install g++-arm-linux-gnueabihf # Do this separately to make upgrades easier -RUN wget https://dlcdn.apache.org/maven/maven-3/3.8.7/binaries/apache-maven-3.8.7-bin.tar.gz \ -&& tar xf apache-maven-*.tar.gz -C /opt && ln -s /opt/apache-maven-3.8.7 /opt/maven +RUN wget https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz \ +&& tar xf apache-maven-*.tar.gz -C /opt && ln -s /opt/apache-maven-3.8.8 /opt/maven # Ensure we are in the correct directory (this will be overlaid by the virtual mount) WORKDIR /home/crypto