We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45c9468 + fd5c68c commit 0454480Copy full SHA for 0454480
client-base/environment.yml
@@ -12,3 +12,4 @@ dependencies:
12
- python-multipart
13
- rich
14
- typer
15
+ - tini
server-base/entrypoint.sh
@@ -9,4 +9,5 @@ ulimit -n 8192
9
10
eval "$(micromamba shell hook --shell=posix)"
11
micromamba activate base
-exec "$@"
+# Use tini to avoid zombie processes and properly handle signal forwarding
+exec tini -- "$@"
0 commit comments