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:51:02 UTC

[tika-docker] 23/28: corrected entrypoint in minimal dockerfile

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 6f88260e8a03881418f4022197769ba7656aae6b
Author: Schmitt Christian <c....@briefdomain.de>
AuthorDate: Tue Sep 1 18:23:31 2020 +0200

    corrected entrypoint in minimal dockerfile
---
 minimal/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/minimal/Dockerfile b/minimal/Dockerfile
index 28b2f8d..674ffde 100644
--- a/minimal/Dockerfile
+++ b/minimal/Dockerfile
@@ -45,6 +45,6 @@ ENV TIKA_VERSION=$TIKA_VERSION
 COPY --from=fetch_tika /tika-server-${TIKA_VERSION}.jar /tika-server-${TIKA_VERSION}.jar
 
 EXPOSE 9998
-ENTRYPOINT java -jar /tika-server-${TIKA_VERSION}.jar -h 0.0.0.0
+ENTRYPOINT ["java", "-jar", "/tika-server-${TIKA_VERSION}.jar", "-h", "0.0.0.0"]
 
 LABEL maintainer="Apache Tika Developers dev@tika.apache.org"