When using this image directly or as a base image, you may encounter zombie processes.
If using Podman/Modern Docker:
Use the --init flag in your run command to reap zombie processes.
If using Docker older than 1.13.0:
Install dumb-init or tini and set them as the ENTRYPOINT in your Dockerfile.
# Use --init to reap zombie processes
$ podman run -d -p <PORT>:<PORT> --name <your-program> --init <your-image>
FROM docker.io/chromedp/headless-shell:latest
...
# Install dumb-init or tini
RUN apt install dumb-init
# or RUN apt install tini
...
ENTRYPOINT ["dumb-init", "--"]
# or ENTRYPOINT ["tini", "--"]
CMD ["/path/to/your/program"]