mirror of
https://github.com/dockersrc/almalinux
synced 2026-06-30 17:45:54 -04:00
394b9cfddf
Build and Push 10-dev / build (push) Failing after 2s
Build and Push 10 / build (push) Failing after 1s
Build and Push 8-dev / build (push) Failing after 2s
Build and Push 8 / build (push) Failing after 2s
Build and Push 9-dev / build (push) Failing after 2s
Build and Push 9 / build (push) Failing after 2s
Build and Push / build (push) Failing after 1s
__setup_mta calls __find_replace on /etc/ssmtp/revaliases which returns 1 when the symlink it creates is broken. With set -o pipefail active the non-zero return kills the entire entrypoint before any command can run. ssmtp is not installed in this image and email delivery is not a feature of this image, so the MTA setup failure is irrelevant. Guard the call with || true so initialization continues regardless. - rootfs/usr/local/bin/entrypoint.sh: __setup_mta || true (non-fatal) rootfs/usr/local/bin/entrypoint.sh