fix(portal): inherit pid 1 in cmd (#9957)

Apparently using the shell form of this causes it not to inherit PID 1
from tini.
This commit is contained in:
Jamil
2025-07-21 18:38:25 -04:00
committed by GitHub
parent 0a0ee3c940
commit e4ba5a6929

View File

@@ -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"]