From 43917f052e7fe8186a33a6f46226eb7d62e2a7e1 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 2 Feb 2023 16:08:23 -0800 Subject: [PATCH] Use Apache CDN to download Maven Maven seems to have improved their download management and instead of having their webpage choose a host they now have a CDN domain. apache.cs.utah.edu is slow and is failing to finish the downloading. --- buildscripts/grpc-java-artifacts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/grpc-java-artifacts/Dockerfile b/buildscripts/grpc-java-artifacts/Dockerfile index 5bab7bf29f..b75b54318a 100644 --- a/buildscripts/grpc-java-artifacts/Dockerfile +++ b/buildscripts/grpc-java-artifacts/Dockerfile @@ -20,6 +20,6 @@ RUN yum install -y \ yum clean all # Install Maven -RUN curl -Ls http://apache.cs.utah.edu/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz | \ +RUN curl -Ls http://dlcdn.apache.org/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz | \ tar xz -C /var/local ENV PATH /var/local/apache-maven-3.3.9/bin:$PATH