Skip to content

Commit 4c29cfe

Browse files
authored
JSP: fix tomcat breakage (#28)
It needs this same fix https://github.com/unicode-org/cldr/pull/793/files (more details at https://stackoverflow.com/questions/51258801/how-to-get-always-latest-link-to-download-tomcat-server-using-shell ) Moving to Maven would improve this as we would only depend on the servlet API for build which doesn't change much, and then the OS provided server package.
1 parent 40615fd commit 4c29cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UnicodeJsps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ FROM openjdk:16-alpine AS build
1212
# way to manage this.
1313
RUN apk add --update apache-ant
1414
# Some version of tomcat. Just used for API, does not have to match TOMCATVERSION
15-
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
15+
ARG TOMCAT_API=https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=tomcat/tomcat-9/v9.0.39/bin/apache-tomcat-9.0.39.tar.gz
1616
RUN mkdir -p /usr/local/lib && cd /usr/local/lib/ && wget "${TOMCAT_API}" -O - | tar xfpz - && ln -svf apache-tomcat-* ./tomcat
1717

1818
WORKDIR /home

0 commit comments

Comments
 (0)