A minimal process wrapper that simply forwards all signals to the child process and waits for the child to exit.
Useful for containers.
parent <command> [<args>...]
Sample use case for a Dockerfile
to use env vars in entrypoint.
...
ENV MY_ENV=value
ENTRYPOINT [/usr/bin/parent]
CMD["echo", "$MY_ENV"]