Skip to content

Commit

Permalink
fixed sha1sum for Tomcat
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 18, 2017
1 parent 9595abe commit 774660c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ RUN yum update -y \
\
&& echo 'Downloading Tomcat...' \
&& wget -q -O tomcat.tar.gz "$TOMCAT_TGZ_URL" \
&& echo "da39a3ee5e6b4b0d3255bfef95601890afd80709 tomcat.tar.gz" | sha1sum -c - \
&& tar -zxf tomcat.tar.gzp -d /opt \
&& echo "e0c8b5f2c5ac4bea302d50101cac46b57947a920 tomcat.tar.gz" | sha1sum -c - \
&& tar -zxf tomcat.tar.gz -d /opt \
&& rm tomcat.tar.gz \
&& find /opt/apache-tomcat-$TOMCAT_VERSION/bin/ -name "*.sh" -exec chmod a+x {} \; \
\
&& echo 'Downloading Ant...'\
&& wget -q -O ant.zip https://archive.apache.org/dist/ant/binaries/apache-ant-$ANT_VERSION-bin.zip \
&& unzip ant.zip -d /opt \
&& echo "fa9acb3b1987f8acf2aa7a87894d1fd9da80e871 ant.zip" | sha1sum -c - \
&& echo "fa9acb3b1987f8acf2aa7a87894d1fd9da80e871 ant.zip" | sha1sum -c - \
&& rm -rf ant.zip /opt/apache-tomcat-$TOMCAT_VERSION/webapps/* \
&& chmod +x /opt/apache-ant-$ANT_VERSION/bin/ant

Expand Down

0 comments on commit 774660c

Please sign in to comment.