Can a singularity recipe be built with docker ENTRYPOINT/CMD equivalent functionality?
I have a dockerfile which ends ENTRYPOINT ["sh"] CMD ["runscript.sh"] I can run docker with an argument (a shell script) that overrides "runscript.sh" (if i wish). Note: the shell scripts are provided by a --bind mount I am translating my…