Skip to content

Commit 5d838ac

Browse files
committed
update tomcat version to 9.0.37
Update to #9
1 parent 3147d6a commit 5d838ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UnicodeJsps/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ FROM openjdk:${JDKVERSION}-alpine AS build
66
# way to manage this.
77
RUN apk add --update apache-ant
88
# Some version of tomcat. Just used for API, does not have to match TOMCATVERSION
9-
ARG TOMCAT_API=http://apache.mirrors.hoobly.com/tomcat/tomcat-9/v9.0.34/bin/apache-tomcat-9.0.34.tar.gz
10-
RUN mkdir -p /usr/local/lib && cd /usr/local/lib/ && wget ${TOMCAT_API} -O - | tar xfpz - && ln -svf apache-tomcat-* ./tomcat
9+
ARG TOMCAT_API=https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=tomcat/tomcat-9/v9.0.37/bin/apache-tomcat-9.0.37.tar.gz
10+
RUN mkdir -p /usr/local/lib && cd /usr/local/lib/ && wget "${TOMCAT_API}" -O - | tar xfpz - && ln -svf apache-tomcat-* ./tomcat
1111

1212
WORKDIR /home
1313
ADD . /home/

0 commit comments

Comments
 (0)