Dockerfile – exec form of ENTRYPOINT and shell form of CMD
I am looking at Docker's documentation to understand what would be behavior of ENTRYPOINT defined in exec form and CMD defined in shell form. The example in the docs only shows something like exec_entry p1_entry /bin/sh -c exec_cmd p1_cmd which…