I found out that my entrypoint was not configured correctly. The real issue was not ACA, but conda
command that was buffering the logs and never flushing to stdout/stderr.
I modified
ENTRYPOINT ["conda", "run", "-n", "py310", "/bin/bash", "-c", "/utils/entrypoint.sh"]
To This:
ENTRYPOINT ["conda", "run", "--live-stream", "-n", "py310", "/bin/bash", "-c", "/utils/entrypoint.sh"]