Skip to content

Commit

Permalink
TRUNK-6083 Attempting to fix tar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Nov 10, 2022
1 parent ced56ca commit f40bfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN if [ "$TARGETARCH" = "arm64" ] ; then TINI_URL="${TINI_URL}-arm64" TINI_SHA=
# Setup Tomcat for development
ARG TOMCAT_VERSION=8.5.83
ARG TOMCAT_SHA="57cbe9608a9c4e88135e5f5480812e8d57690d5f3f6c43a7c05fe647bddb7c3b684bf0fc0efebad399d05e80c6d20c43d5ecdf38ec58f123e6653e443f9054e3"
RUN curl -o /tmp/apache-tomcat.tar.gz \
RUN curl -fL -o /tmp/apache-tomcat.tar.gz \
https://dlcdn.apache.org/tomcat/tomcat-8/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz \
&& echo "${TOMCAT_SHA} /tmp/apache-tomcat.tar.gz" | sha512sum -c \
&& mkdir -p /usr/local/tomcat && tar -xvzf /tmp/apache-tomcat.tar.gz -C /usr/local/tomcat/ --strip-components=1 \
Expand Down

0 comments on commit f40bfe9

Please sign in to comment.