From 402cbd03bc3e45e73d8026a7b299840489f6d975 Mon Sep 17 00:00:00 2001 From: Aref Khandan Date: Wed, 20 Jan 2021 11:56:29 +0330 Subject: [PATCH] Update Tomcat mirror address nexcess.net mirror is obsolete with 404 error, just updated the mirror to Apache archives. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c06f67..efca0ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ WORKDIR /opt # install tomcat # ENV TOMCAT_VERSION 7.0.56 -RUN wget -qq http://mirror.nexcess.net/apache/tomcat/tomcat-7/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz ; \ +RUN wget -qq https://archive.apache.org/dist/tomcat/tomcat-7/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz ; \ tar -xzvf apache-tomcat-${TOMCAT_VERSION}.tar.gz ; \ rm -r apache-tomcat-${TOMCAT_VERSION}/webapps/* ; \ rm apache-tomcat-${TOMCAT_VERSION}.tar.gz ; \