From d3a7dd17d494770b57bbac4e462f6423c82ea22b Mon Sep 17 00:00:00 2001 From: HustonMmmavr <huston.mavr@gmail.com> Date: Thu, 7 May 2020 21:28:08 +0300 Subject: [PATCH] static build: dockerfile entrypoint set to exec form According to dockerfile reference, there are two forms of specifying entrypoint: exec and shell. Exec form is preferrable and allows use this image in scripts. Close #4960 --- Dockerfile.staticbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild index a1c47a85e7..253f2d5e92 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"] -- GitLab