From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f180.google.com (mail-lj1-f180.google.com [209.85.208.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 2A3A3469710 for ; Fri, 8 May 2020 13:17:20 +0300 (MSK) Received: by mail-lj1-f180.google.com with SMTP id g4so1104819ljl.2 for ; Fri, 08 May 2020 03:17:20 -0700 (PDT) From: HustonMmmavr Date: Fri, 8 May 2020 13:17:03 +0300 Message-Id: <20200508101703.8928-1-huston.mavr@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH] static build: set dockerfile entrypoint to exec form List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, yaroslav.dynnikov@gmail.com According to dockerfile reference, there are two forms of specifying entrypoint: exec and shell. Exec form is preferred and allows to use this image in scripts. Close #4960 --- Issue: https://github.com/tarantool/tarantool/issues/4960 Branch: https://github.com/tarantool/tarantool/tree/HustonMmmavr/gh-4960-inappropriate-dockerfile.staticbuild-syntax Dockerfile.staticbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild index a1c47a85e..253f2d5e9 100644 --- a/Dockerfile.staticbuild +++ b/Dockerfile.staticbuild @@ -95,4 +95,4 @@ RUN if [ -n "${RUN_TESTS}" ]; then \ /usr/bin/python test-run.py --force; \ fi -ENTRYPOINT /bin/bash +ENTRYPOINT ["/bin/bash"] -- 2.26.2