This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 0fea97982a [CHORE] Fix URL for downloading Apache Maven in Dockerfile
0fea97982a is described below
commit 0fea97982a9513a071b5eba802e4ee81ada44e6b
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Mar 26 10:20:23 2026 +0100
[CHORE] Fix URL for downloading Apache Maven in Dockerfile
* Fix URL for downloading Apache Maven in Dockerfile
* Update Maven download URL to use HTTPS
* Update Maven download URL to use HTTPS
---
docker/pythonsysds.Dockerfile | 2 +-
docker/sysds.Dockerfile | 2 +-
docker/testsysds.Dockerfile | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker/pythonsysds.Dockerfile b/docker/pythonsysds.Dockerfile
index a52bb7de4f..0e777bc90b 100644
--- a/docker/pythonsysds.Dockerfile
+++ b/docker/pythonsysds.Dockerfile
@@ -46,7 +46,7 @@ RUN apt-get update -qq \
https://github.com/AdoptOpenJDK/openjdk11-upstream-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jdk_x64_linux_11.0.13_8.tar.gz
| tar xzf - \
&& mv openjdk-11.0.13_8 /usr/lib/jvm/java-11-openjdk-amd64 \
&& wget -qO- \
-
http://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
+
https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
&& mv apache-maven-$MAVEN_VERSION /usr/lib/mvn \
&& git clone --depth 1 https://github.com/apache/systemds.git systemds
&& \
cd /usr/src/systemds/ && \
diff --git a/docker/sysds.Dockerfile b/docker/sysds.Dockerfile
index 2238aa878a..61a435a3f3 100644
--- a/docker/sysds.Dockerfile
+++ b/docker/sysds.Dockerfile
@@ -47,7 +47,7 @@ RUN mkdir -p /usr/lib/jvm \
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_alpine-linux_hotspot_17.0.15_6.tar.gz
| tar xzf - \
&& mv jdk-17.0.15+6 $JAVA_HOME \
&& wget -qO- \
-
http://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
+
https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
&& mv apache-maven-$MAVEN_VERSION /usr/lib/mvn
# Build the system
diff --git a/docker/testsysds.Dockerfile b/docker/testsysds.Dockerfile
index a4bfc14416..0b4754aa88 100644
--- a/docker/testsysds.Dockerfile
+++ b/docker/testsysds.Dockerfile
@@ -77,7 +77,7 @@ RUN apt-get install -y --no-install-recommends \
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz
| tar xzf - \
&& mv jdk-17.0.15+6 $JAVA_HOME \
&& wget -qO- \
-
http://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
+
https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz
| tar xzf - \
&& mv apache-maven-$MAVEN_VERSION /usr/lib/mvn