From e8c8bb1a9307b35d0c7dfc44985ac030ff5764ed Mon Sep 17 00:00:00 2001 From: Rodrigo Gomes <63259307+RodrigoGN@users.noreply.github.com> Date: Thu, 25 Apr 2024 19:55:05 -0300 Subject: [PATCH] Update Dockerfile Tomcat 8.5.43 Test other Tomcat version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1b7568..47482ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:22.04 as tomcat -ARG TOMCAT_VERSION=9.0.86 +ARG TOMCAT_VERSION=8.5.43 ARG CORS_ENABLED=false ARG CORS_ALLOWED_ORIGINS=* ARG CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS @@ -39,7 +39,7 @@ RUN apt update \ WORKDIR /opt/ -RUN wget -q https://archive.apache.org/dist/tomcat/tomcat-9/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz \ +RUN wget -q https://archive.apache.org/dist/tomcat/tomcat-8/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 \