You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by dm...@apache.org on 2020/11/30 21:50:42 UTC

[tika-docker] 03/28: Removed redundant output

This is an automated email from the ASF dual-hosted git repository.

dmeikle pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tika-docker.git

commit 1a69fd9ec79787a90580677090783dbae29778f7
Author: David Meikle <dm...@apache.org>
AuthorDate: Thu Jan 9 02:39:25 2020 +0000

    Removed redundant output
---
 full/Dockerfile    | 1 -
 minimal/Dockerfile | 1 -
 2 files changed, 2 deletions(-)

diff --git a/full/Dockerfile b/full/Dockerfile
index a9ad964..ef43a4a 100644
--- a/full/Dockerfile
+++ b/full/Dockerfile
@@ -31,7 +31,6 @@ ENV NEAREST_TIKA_SERVER_URL="https://www.apache.org/dyn/closer.cgi/tika/tika-ser
 
 RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gnupg2 curl wget \
     && curl -sSL https://www.apache.org/dist/tika/KEYS | gpg --import \
-    && echo "Nearest mirror: $NEAREST_TIKA_SERVER_URL" \
     && wget $NEAREST_TIKA_SERVER_URL -O /tika-server-${TIKA_VERSION}.jar || rm /tika-server-${TIKA_VERSION}.jar \
     && sh -c "[ -f /tika-server-${TIKA_VERSION}.jar ]" || wget $ARCHIVE_TIKA_SERVER_URL -O /tika-server-${TIKA_VERSION}.jar || rm /tika-server-${TIKA_VERSION}.jar \
     && wget $DEFAULT_TIKA_SERVER_ASC_URL -O /tika-server-${TIKA_VERSION}.jar.asc  || rm /tika-server-${TIKA_VERSION}.jar.asc \
diff --git a/minimal/Dockerfile b/minimal/Dockerfile
index 917ef38..6554be9 100644
--- a/minimal/Dockerfile
+++ b/minimal/Dockerfile
@@ -26,7 +26,6 @@ ENV NEAREST_TIKA_SERVER_URL="https://www.apache.org/dyn/closer.cgi/tika/tika-ser
 
 RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gnupg2 curl wget \
     && curl -sSL https://www.apache.org/dist/tika/KEYS | gpg --import \
-    && echo "Nearest mirror: $NEAREST_TIKA_SERVER_URL" \
     && wget $NEAREST_TIKA_SERVER_URL -O /tika-server-${TIKA_VERSION}.jar || rm /tika-server-${TIKA_VERSION}.jar \
     && sh -c "[ -f /tika-server-${TIKA_VERSION}.jar ]" || wget $ARCHIVE_TIKA_SERVER_URL -O /tika-server-${TIKA_VERSION}.jar || rm /tika-server-${TIKA_VERSION}.jar \
     && wget $DEFAULT_TIKA_SERVER_ASC_URL -O /tika-server-${TIKA_VERSION}.jar.asc  || rm /tika-server-${TIKA_VERSION}.jar.asc \