Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH] static build: set dockerfile entrypoint to exec form
@ 2020-05-08 10:17 HustonMmmavr
  2020-05-08 12:39 ` Alexander V. Tikhonov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: HustonMmmavr @ 2020-05-08 10:17 UTC (permalink / raw)
  To: tarantool-patches, yaroslav.dynnikov

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-08 13:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-08 10:17 [Tarantool-patches] [PATCH] static build: set dockerfile entrypoint to exec form HustonMmmavr
2020-05-08 12:39 ` Alexander V. Tikhonov
2020-05-08 13:30 ` Sergey Bronnikov
2020-05-08 13:36 ` Kirill Yukhin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox