From 5d787ea433c41277dbff83a357057eede6d3dbf2 Mon Sep 17 00:00:00 2001 From: Scott Koranda Date: Fri, 20 Apr 2018 15:18:41 -0500 Subject: [PATCH] Changed source URL for xerces and santuario Changed the source URLs for xerces and santuario to use the official apache.org location since the mirror being used stopped functioning. --- comanage-registry-shibboleth-sp/Dockerfile.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comanage-registry-shibboleth-sp/Dockerfile.template b/comanage-registry-shibboleth-sp/Dockerfile.template index dc8d8b3..e5b11c6 100644 --- a/comanage-registry-shibboleth-sp/Dockerfile.template +++ b/comanage-registry-shibboleth-sp/Dockerfile.template @@ -53,7 +53,7 @@ RUN wget -O log4shib.tar.gz "${LOG4SHIB_URL}" \ && cd .. \ && rm -r src -ARG XERCESC_URL=http://ftp.wayne.edu/apache//xerces/c/3/sources/xerces-c-3.2.0.tar.gz +ARG XERCESC_URL=http://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.2.1.tar.gz RUN wget -O xerces.tar.gz "${XERCESC_URL}" \ && mkdir -p src \ @@ -66,7 +66,7 @@ RUN wget -O xerces.tar.gz "${XERCESC_URL}" \ && cd .. \ && rm -r src -ARG XMLSECC_URL=http://ftp.wayne.edu/apache/santuario/c-library/xml-security-c-1.7.3.tar.gz +ARG XMLSECC_URL=http://www.apache.org/dist/santuario/c-library/xml-security-c-1.7.3.tar.gz RUN wget -O xmlsecc.tar.gz "${XMLSECC_URL}" \ && mkdir -p src \