From e4ba5a6929e7970f05fc1f2e397a11dacefcff8a Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 21 Jul 2025 18:38:25 -0400 Subject: [PATCH] fix(portal): inherit pid 1 in cmd (#9957) Apparently using the shell form of this causes it not to inherit PID 1 from tini. --- elixir/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/Dockerfile b/elixir/Dockerfile index bf512a483..200c1e8a2 100644 --- a/elixir/Dockerfile +++ b/elixir/Dockerfile @@ -326,4 +326,4 @@ USER default # Tini would become an entrypoin script and would take care of zombie reaping no matter how you start the VM. ENTRYPOINT ["/sbin/tini", "--"] -CMD bin/server +CMD ["bin/server"]