SH File Permissions
In the default provided dockerfile, the process of:
COPY scripts /dsop-fix/
then later the execution of the scripts such as
/dsop-fix/xccdf_org.ssgproject.content_rule_account_disable_post_pw_expiration.sh && \
Fails, due to the copy of the scripts not having the +x execution flag.
Adding a
chmod +x /dsop-fix/*.sh && \
Before the long line of script executions fixes the issue.