From 5981c4ccd4be2ea509b24d1d3cca0596b6e87f73 Mon Sep 17 00:00:00 2001 From: Youssef-Harby Date: Fri, 7 Oct 2022 17:47:02 +0200 Subject: [PATCH] replace release tomcat url with archive url --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5086810..0db8b21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ RUN apt update && \ rm -rf /var/lib/apt/lists/* WORKDIR /opt/ -RUN wget -q https://dlcdn.apache.org/tomcat/tomcat-9/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz && \ +RUN wget -q https://archive.apache.org/dist/tomcat/tomcat-9/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz && \ tar xf apache-tomcat-${TOMCAT_VERSION}.tar.gz && \ rm apache-tomcat-${TOMCAT_VERSION}.tar.gz && \ rm -rf /opt/apache-tomcat-${TOMCAT_VERSION}/webapps/ROOT && \